This endpoint returns a paginated list of awards and their associated classifications available for the organisation.
https://api.employmenthero.com/api/v1/organisations/:organisation_id/awards_and_classificationsPath Parameters
The ID of the organisation to retrieve awards for
Query Parameters
Current page index
11Number of items per page
20100Response Body
Returns a paginated list of awards available to the organisation. Each award includes its classifications. Only active awards with fully imported classifications that have associated pay rate templates are returned. Classifications with automatic progression are excluded.
List of awards and their associated classifications available for the organisation.
Unique identifier for the award.
Name of the award (industrial instrument).
List of classifications available under this award.
Current page index
11Number of awards per page
20100Total number of pages
Total number of awards
Example
curl -X GET \ "https://api.employmenthero.com/api/v1/organisations/:organisation_id/awards_and_classifications" \ -H "Authorization: Bearer AUXJ3123xyrj123fdsjkl124aAJKQ"Response
{ "data": { "awards": [ { "award_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890", "award_name": "Wholesale Award 2010", "classifications": [ { "classification_id": "b1b2c3d4-e5f6-7890-abcd-ef1234567890", "classification_name": "Day Working - Full Time" }, { "classification_id": "c1b2c3d4-e5f6-7890-abcd-ef1234567890", "classification_name": "Day Working - Part Time" } ] }, { "award_id": "d1b2c3d4-e5f6-7890-abcd-ef1234567890", "award_name": "Retail Industry Award 2020", "classifications": [ { "classification_id": "e1b2c3d4-e5f6-7890-abcd-ef1234567890", "classification_name": "Retail Employee Level 1" } ] } ], "page_index": 1, "item_per_page": 20, "total_pages": 1, "total_items": 2 }}