Get group permissions

GET /closeAPI/api/close/assignment/group/{id}/permissions

Path parameters

  • id integer Required

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • id integer
    • firstName string
    • middleInitial string
    • lastName string
    • fullName string
    • hrId string
    • userId string
    • title string
    • phone string
    • email string
    • role object
      Hide role attributes Show role attributes object
      • type string

        Values are OWNER, VIEWER, PERFORMER, REVIEWER, or APPROVER.

      • name string
GET /closeAPI/api/close/assignment/group/{id}/permissions
curl \
 --request GET 'https://customer.trintech.com/closeAPI/api/close/assignment/group/{id}/permissions'
Response examples (200)
[
  {
    "id": 42,
    "firstName": "string",
    "middleInitial": "string",
    "lastName": "string",
    "fullName": "string",
    "hrId": "string",
    "userId": "string",
    "title": "string",
    "phone": "string",
    "email": "string",
    "role": {
      "type": "OWNER",
      "name": "string"
    }
  }
]