curl --request GET \
--url https://api.yorlet.com/v1/application_configurations \
--header 'Authorization: <api-key>'{
"count": 1,
"has_more": false,
"object": "list",
"data": [
{
"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
}
]
}List all application configurations
curl --request GET \
--url https://api.yorlet.com/v1/application_configurations \
--header 'Authorization: <api-key>'{
"count": 1,
"has_more": false,
"object": "list",
"data": [
{
"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".
A object with a data property that contains an array of application configurations.
Was this page helpful?