Skip to main content

Create a permission group

POST 
/auth/permission_groups

Creates a new permission group object.

Request

Body

required

    description stringrequired

    Human readable identifier.

    actions string[]required
    resource_groups string[]required

Responses

200: Successful response

401: Authentication error

403: Authorization error

422: Invalid parameters supplied in request. See HTTP response body for details.

Request samples


curl -L 'https://api.telnyx.com/auth/permission_groups' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-d '{
"description": "Text Jenny",
"actions": [
"string"
],
"resource_groups": [
"string"
]
}'

Response samples


{
"data": {
"id": "1490ecab-d4a1-4f22-abe7-60f5500a060f",
"description": "Text Jenny",
"actions": [
"string"
],
"resource_groups": [
"string"
],
"record_type": "permission_group",
"created_at": "2018-02-08T18:49:22.998023Z",
"updated_at": "2018-02-08T18:49:22.998023Z"
}
}