Mark user as signatory

PATCH/v1/users/group/{uuid}/user/{userUuid}

Path parameters

  • uuidstringRequired#
    Unique identifier of the user group.
  • userUuidstringRequired#
    Unique identifier of the user to mark as signatory.

Request body

Body shape: Request_MarkUserAsSignatory (required)

Responses

200User marked as signatory.ObjectResponse
{}
401Unauthorized.Error
404Not found.Error
curl -X PATCH https://your-url.com/kong/core/api/gateway/v1/users/group/{uuid}/user/{userUuid}\
  -H "Authorization: Bearer $DELIO_API_KEY"\
  -H "Content-Type: application/json"\
  -d '{
  "uuid": "00000000-0000-0000-0000-000000000000",
  "userUuid": "00000000-0000-0000-0000-000000000000",
  "signatory": true
}'