Get group permissions by entity

GET /closeAPI/api/close/entity/{id}/group-permission

Path parameters

  • id integer Required

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • id integer
    • name 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/entity/{id}/group-permission
curl \
 --request GET 'http://close-service:8082/closeAPI/api/close/entity/{id}/group-permission'
Response examples (200)
[
  {
    "id": 42,
    "name": "string",
    "role": {
      "type": "OWNER",
      "name": "string"
    }
  }
]