API
- Introduction
- Authentication
- Idempotency
- Versioning
- Silo
- Transform
- Sequences
- Access
- Workspaces
- Enrollments
- Utils
Enrollments
Authorize Enrollment
Authenticate using application credentials and a specific owner ID, token, or enrollment. (Only Applications!)
POST
/
access
/
v1
/
enrollment
/
authorize
curl --request POST \
--url https://api.invopop.com/access/v1/enrollment/authorize \
--header 'Content-Type: application/json' \
--data '{
"client_id": "XzhLPeXCi3GBVg",
"client_secret": "p2NWtVpuDxDYt41crWUBmQKaE4Mh92roDxp_8UKkIJY",
"id": "347c5b04-cde2-11ed-afa1-0242ac120002",
"owner_id": "347c5b04-cde2-11ed-afa1-0242ac120002"
}'
{
"app_id": "01900e17-db4d-78a5-8505-c93ae63e8a0d",
"created_at": "2018-01-01T00:00:00.000Z",
"data": "<any>",
"disabled": false,
"id": "347c5b04-cde2-11ed-afa1-0242ac120002",
"owner_id": "347c5b04-cde2-11ed-afa1-0242ac120002",
"token": "<string>",
"updated_at": "2018-01-01T00:00:00.000Z"
}
Body
application/json
Response
200 - application/json
OK
The response is of type object
.
curl --request POST \
--url https://api.invopop.com/access/v1/enrollment/authorize \
--header 'Content-Type: application/json' \
--data '{
"client_id": "XzhLPeXCi3GBVg",
"client_secret": "p2NWtVpuDxDYt41crWUBmQKaE4Mh92roDxp_8UKkIJY",
"id": "347c5b04-cde2-11ed-afa1-0242ac120002",
"owner_id": "347c5b04-cde2-11ed-afa1-0242ac120002"
}'
{
"app_id": "01900e17-db4d-78a5-8505-c93ae63e8a0d",
"created_at": "2018-01-01T00:00:00.000Z",
"data": "<any>",
"disabled": false,
"id": "347c5b04-cde2-11ed-afa1-0242ac120002",
"owner_id": "347c5b04-cde2-11ed-afa1-0242ac120002",
"token": "<string>",
"updated_at": "2018-01-01T00:00:00.000Z"
}
Assistant
Responses are generated using AI and may contain mistakes.