curl --request GET \
--url https://api.yorlet.com/v1/application_configurations/{id} \
--header 'Authorization: <api-key>'{
"id": "<string>",
"created": 123,
"object": "application_configuration",
"active": true,
"initial_step": "<string>",
"name": "<string>",
"steps": [
{
"id": "<string>",
"next_step": "<string>",
"type": "advance_rent"
}
],
"account": "<string>",
"deleted": false
}Retrieve an application configuration
curl --request GET \
--url https://api.yorlet.com/v1/application_configurations/{id} \
--header 'Authorization: <api-key>'{
"id": "<string>",
"created": 123,
"object": "application_configuration",
"active": true,
"initial_step": "<string>",
"name": "<string>",
"steps": [
{
"id": "<string>",
"next_step": "<string>",
"type": "advance_rent"
}
],
"account": "<string>",
"deleted": false
}API Key authentication. Use "Bearer YOUR_API_KEY".
The id identifier.
Returns an application configuration object if a valid identifier was provided.
Unique identifier for the object.
Time at which the object was created. Measured in seconds since the Unix epoch.
application_configuration Whether the application configuration is active.
The identifier of the initial step in the configuration.
The name of the application configuration.
The steps of the application configuration.
The advance rent step.
Show child attributes
The account that the object belongs to. Only returned if the request is made with a valid Yorlet-Context header.
Only returned if the object has been deleted.
Was this page helpful?