Skip to content

Create access configuration with explicit ID

POST
/api/admin/access/{id}
curl --request POST \
--url https://example.com/api/admin/access/example \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "name": "example", "type": "example" }'

Creates or updates an access configuration under the supplied ID

id
required

Access configuration ID

string
Media typeapplication/json

Access configuration payload. Additional provider-specific fields are permitted.

object
name

Display name for the access configuration

string
type

Access configuration type

string
Examplegenerated
{
"name": "example",
"type": "example"
}

Access configuration saved successfully

Media typeapplication/json

Stored access configuration. Additional provider-specific fields are permitted.

object
id

Access configuration ID

string
Examplegenerated
{
"id": "example"
}