ApplicationData
Introduction
Detailed view of the ApplicationData datatype. This page explains all the attributes of that datatype.
Attributes
Name | Type | Posible values | Description |
---|---|---|---|
id | string | n/a | The ID of the application. Has to be 32 characters long. |
activated | boolean | true or false | True if the application is active, false if not. |
updated | long | 1361523600000 | Unix timestamp of the point in time when the application was updated lastly. The timestamp is given in miliseconds, not in seconds. |
sent | long | 1361523600000 | Unix timestamp of the point in time when the application was sent to the company. The timestamp is given in miliseconds, not in seconds. |
projectId | string | n/a | The ID of the project the application is assigned to. Has to be 32 characters long. |
title | string | n/a | The title of the application. |
status | string | n/a | The status of the application.(?Is there an enum behind?) |
editable | boolean | True if its editable, false if not. | Says whether the applicant may edit the application or not. |
jobPostingId | long | n/a | The ID of the jobposting an application is assigned to. |
unsolicited | boolean | True if it’s an ansolicited application, false if not. | Whether the applicant has sent in the application unsolicited or not. |
showPoolname | boolean | True if the poolname is shown, false if not. | n/a |
currentProjecttype | int | The current type of the Project. | n/a |
currentProjectname | string | n/a | The current name of the project. |
frontendStatus | string | n/a | Status of the application how it is shown in the user frontend. |
poolType | string | n/a | The pool the application was added to. |
JSON response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
{ "id": "5aaac9d77f000002312f7d4d35a82796", "activated": true, "updated": 0, "sent": 1320015600000, "projectId": "5aa9b2457f0000023631460ece7ddb4b", "title": "Testposition m/w", "status": "send" "editable": true, "jobPostingId": 0 "unsolicited": false "showPoolname": false "currentProjecttype": 11 "currentProjectname": "Abgesagte Bewerber" "frontendStatus": "Gesendet", "poolType": deletepool } |