-
Notifications
You must be signed in to change notification settings - Fork 0
wepow:application
Andres Freyria edited this page Apr 11, 2018
·
6 revisions
An application resource is an individual response to an interview from a specific candidate. It's purpose is to track where in the application process the candidate is in.
The statuses have the following meanings:
- new : The application has been created
- sent : The application invitation has been sent to the candidate's email
- delivered : The email has arrived to the candidate's email server
- opened : The candidate has opened the invitation email
- started : The candidate has opened the application link
- in_progress : The candidate has begun answering the application
- completed : The candidate has finished the application
- expired : The interview or the application has expired
Name | Type | Description |
---|---|---|
id | String | The identifier of the resource |
date_sent | DateTime | The date and time when the application was sent by the recruiter |
date_completed | DateTime | The date and time when the application was completed by the candidate |
date_updated | DateTime | The date and time of the last moment the state of this resource changed |
status | String | The status of the application — supported values: [new, sent, delivered, opened, started, in_progress, completed, expired] |
evaluation_status | String | The status of the application's evaluation — supported values: [approved, pending, dismissed] |
external_id | String | Use this field to track new applications and link them to a different system. This field can only be set upon creation, and cannot be edited |
Relation | Description |
---|---|
self | The resource full representation |
wepow:interview | The interview that this application belongs to |
wepow:candidate | The candidate that this application belongs to |
wepow:application:response | The link to the candidate's response in the Wepow web app |
wepow:application:status | The status representation of the application - only available if the status can be modified |
wepow:application:invitation | The candidate's invitation representation for the application |
wepow:application:invitation-link | The candidate's invitation link representation for the application |
{
"id": "4fbe6fe6a8326c0de7000003",
"date_sent": "2012-05-24T17:29:13+00:00",
"evaluation_status": "pending",
"status": "sent",
"_links": {
"self": {
"href": "/hypermedia/applications/4fbe6fe6a8326c0de7000003"
},
"wepow:interview": {
"href": "/hypermedia/interviews/4fbe6d9ca8326c0c25000049"
},
"wepow:candidate": {
"href": "/hypermedia/candidates/4fbe6fe6a8326c0de7000001"
}
}
}
- 200: The resource representation is returned.
- 204: The resource has been deleted.
- 422: The resource deletion failed.