# Check Application Status
Once an application has been submitted through the Automation Cloud, you can check its status. Applications may vary in the time they take to complete based on factors such as length and complexity.
Using the applicationId, you can query the status of an application, which may be in a processing
, success
, or failed
state.
# API Endpoint
To check the status of a submitted application, use the following API endpoint:
GET /v1/recruitment/job-posts/find/application/
# Headers
Name | Type | Required | Description |
---|---|---|---|
Authorization | string | ✅ | See Authentication |
Example:
Authorization: Basic <credentials>
# Query Parameters
Parameter | Type | Required | Description |
---|---|---|---|
applicationId | string | ✅ | The Job Post application ID. Example: applicationId=990d453d-9767-4f8b-9ad7-57563a309b736 |
# Code Sample
Here’s an example of how to structure the API call to check the application status:
GET
/v1/recruitment/job-posts/find/application/
curl -X GET 'https://services.automation.cloud/v1/recruitment/job-posts/find/application/' \
-H 'Authorization: Basic <credentials>' \
-L \
-G \
-d 'applicationId=990d453d-9767-4f8b-9ad7-57563a309b736'
# Success Responses
Upon a successful request, you will receive a response indicating the status of the application:
# Status: processing
{
"status": "processing"
}
Application is currently in the processing state.
# Status: success
{
"status": "success"
}
Application has been successfully processed.
# Important Notes
- Ensure that you have the correct applicationId to query the status.
- The status can help you determine the next steps in the application process, such as whether to follow up or wait for further updates.