List all jobs
Returns a list of your jobs. The jobs are returned sorted by creation date, with the most recently created jobs appearing first.
Query parameters
-
limit integer
A limit on the number of objects to be returned. Limit can range between
1
and100
, and the default is10
.Minimum value is
1
, maximum value is100
. Default value is10
. -
starting_after string
A cursor for use in pagination.
starting_after
is an job ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending withjb_fOo123
, your subsequent call can includestarting_after=jb_fOo123
in order to fetch the next page of the list. -
ending_before string
A cursor for use in pagination.
ending_before
is an job ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting withjb_bAr123
, your subsequent call can includeending_before=jb_bAr123
in order to fetch the previous page of the list.
curl \
-X GET https://api.1099policy.com/api/v1/jobs
[
{
"id": "jb_jsb9KEcTpc",
"name": "Mechanic technician",
"wage": 1500,
"entity": "en_C9Z2DmfHSF",
"created": 1646818364,
"wage_type": "flatfee",
"description": "BMW engine diagnostics and troubleshooting.",
"category_code": "jc_MTqpkbkp6G",
"custom_metadata": {
"campaign": "Volvo"
},
"years_experience": 5
}
]