Connections
Create Callback State
This endpoint creates a callback state that can be used to issue requests to the callback endpoint.
post/vault/connections/{unified_api}/{service_id}/callback-state
Path parameters
service_idstring required
Service ID of the resource to return
unified_apistring required
Unified API
Headers
x-apideck-consumer-idstring required
ID of the consumer which you want to get or push data from
x-apideck-app-idstring required
The ID of your Unify application
Request body
Example request
{
"redirect_uri": "https://example.com/callback"
}Response
Callback state created
Example response
{
"status_code": 200,
"status": "OK",
"data": {
"state": "123e4567-e89b-12d3-a456-426614174000"
}
}