Job Categories¶
Job Category Attributes¶
| Attribute | Name | 
|---|---|
| id | The ID of the given job category. | 
| description | The description of the given job category. | 
Sample¶
{
        "id": 314,
        "description": "Liq - Burndown"
}
Endpoints¶
/api/job_categories¶
GET¶
Returns a list of the available job categories.
Parameters¶
| Name | Description | 
|---|---|
| partnership_id | The Partnership ID for the partnership you are interested in. The method will return all of the job categories available for this partnership. | 
Returns¶
Returns an array of all the job categories available for the given partnership.
Sample¶
[
  {
    "id": 314,
    "description": "Liq - Burndown"
  },
  {
    "id": 315,
    "description": "Liq - Pre Emerge"
  },
  {
    "id": 316,
    "description": "Liq - Post Emerge"
  },
  {
    "id": 317,
    "description": "Floater - Burndown"
  },
  {
    "id": 318,
    "description": "Floater - Pre Emerge"
  },
  {
    "id": 319,
    "description": "NH3 Custom"
  },
  {
    "id": 320,
    "description": "Dry - VRT"
  },
  {
    "id": 321,
    "description": "Dry - Spinner"
  },
  {
    "id": 322,
    "description": "Dry - Post Urea"
  }
]