Skip to main content
PUT
/
access-control
/
access-profile-groups
/
{sourceId}
/
access-profiles
Upload Access Profiles
curl --request PUT \
  --url https://app.essentry.com/api/v2/access-control/access-profile-groups/{sourceId}/access-profiles \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "accessProfiles": [
    {
      "id": "<string>",
      "name": "<string>",
      "description": "<string>"
    }
  ]
}'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

sourceId
string
required

The ID of the access profile group to which the access profiles belong.

Body

application/json
accessProfiles
object[]
required

Response

204

There is no content to send for this request, but the headers may be useful.