List all category codes

GET /api/v1/category_codes

Returns a list of your approved job category codes. The job category codes are returned sorted by approval date, with the most recently approved job categories appearing first.

Query parameters

  • limit integer

    A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

    Minimum value is 1, maximum value is 100. Default value is 10.

Responses

  • 200 application/json

    Returns an array of job category code objects. If no more job category codes are available, the resulting array will be empty.

    Hide response attributes Show response attributes object
GET /api/v1/category_codes
curl \
 -X GET https://api.1099policy.com/api/v1/category_codes
Response examples (200)
[
  {
    "category_code": "jc_MTqpkbkp6G",
    "name": "Computer Service or Repair"
  },
  {
    "category_code": "jc_5Tqpkbkp6G",
    "name": "Spokesperson / Influencer"
  }
]