curl --request POST \
--url https://api.yorlet.com/v1/application_sessions \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"application_status": "<string>",
"send_email": true
}
'{
"id": "<string>",
"created": 123,
"object": "application_session",
"application": "<string>",
"application_status": "<string>",
"customer": "<string>",
"mode": "classic",
"status": "pending",
"url": "<string>",
"account": "<string>",
"deleted": false
}Creates a new application session for the specified application.
curl --request POST \
--url https://api.yorlet.com/v1/application_sessions \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"application_status": "<string>",
"send_email": true
}
'{
"id": "<string>",
"created": 123,
"object": "application_session",
"application": "<string>",
"application_status": "<string>",
"customer": "<string>",
"mode": "classic",
"status": "pending",
"url": "<string>",
"account": "<string>",
"deleted": false
}API Key authentication. Use "Bearer YOUR_API_KEY".
Returns the application session object if the creation succeeded.
Unique identifier for the object.
Time at which the object was created. Measured in seconds since the Unix epoch.
application_session The identifier of the application for the session.
The identifier of the applicant for the session.
The identifier of the customer for the session.
The mode of the application session.
classic, configuration The status of the application session.
pending, complete, canceled, active, expired The URL of the application session hosted page.
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?