curl --request POST \
--url https://api.yorlet.com/v1/application_configurations/{id} \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"active": true,
"name": "<string>",
"steps": [
{
"id": "<string>",
"next_step": "<string>",
"type": "advance_rent"
}
]
}
'{
"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
}Update an application configuration
curl --request POST \
--url https://api.yorlet.com/v1/application_configurations/{id} \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"active": true,
"name": "<string>",
"steps": [
{
"id": "<string>",
"next_step": "<string>",
"type": "advance_rent"
}
]
}
'{
"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.
Whether the application configuration is active.
The name of the application configuration.
The steps of the application configuration.
1The advance rent step.
Show child attributes
Returns the application configuration object if the update succeeded.
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?