Continue application at home
Continue an application at home
In mobile applications for example we want to allow an user to continue his application at a later moment. To make this possible, an email that contains a link where the applicant can find his application to continue with, is sent to him. Trigger that email using a GET request with the /applications/{appId}/continueAtHome endpoint:
1 |
curl -i -H "Authorization: Bearer TOKEN" -H "Content-Type: application/json" -X GET "https://api.softgarden.cloud.com/api/rest/v2/frontend/applications/{appId}/continueAtHome" |
with TOKEN being the user access token of the user in question and appId corresponding to the ID of one of his/her applications. Please note, that an email can only be sent if there is a template deposited for that sort of email.
Path parameters
Name | Description |
---|---|
appId | The ID of the application for which the email is generated. |
Query parameters
– none –
Response values
Upon | Returned value | Description |
---|---|---|
success | 204 – No Content | The response has no content, if query was successful |
failure | 500 – INTERNAL SERVER ERROR | When an error appears while processing your request. |
authorization error | 401 / 403 | See here for details. |