Employer API Detail Job
Employer API Detail Job
The employer detail
function returns information about a specific job from the authorised account. The request must provide the id
field.
URL
https://apprenticeshipcentral.com.au/api/employer/detail/
Request
id
(int) – the job id number. Can be retrieved by the Employerlist
API call. Required.type
(string) –job
. Required.
Response
response
success_count
(int) – set to 1 if the query ran without errors (regardless of the number of results returned).error_count
(int)- set to 1 if there was a query error.
data
id
(int) – the position id.employer_id
(int) – the agency’s user id.agency_employer_id
(int) – the agency’s internal employer id.position_name
(string) – the position title.position_description
(string) – the position description.position_email
(string) – email address.position_type
(string) – Full, Time, Part Time, School Based or Non-1st Year.position_class
(int) – 0 = not specified, 1 = apprenticeship, 2 = traineeship.position_location
(int) – company location id. Can be retrieved by the Employerlist
API call.position_category
(string) – category in slug format.position_subcategory
(string) – subcategory in slug format.position_tags
(string) – comma separated tag string.position_drivers
(int) – driver’s licence required. 0 = not specified, 1 = yes, 2 = no.position_public
(bool) – 1 = yes (visible), 0 – no.position_viewed
(int) – number of times position has been viewed online.updated
(datetime) – MySQL Date.updated_by
(string) – last user to make changes.position_url
(string) – URL to the job detail on AC.
Errors
201
– No valid type passed.202
– Database query error – these should be reported.
Return to Employer API Detail