Returns a list of your jobs. The jobs are returned sorted by creation date, with the most recently created jobs appearing first.
Query parameters
-
A limit on the number of objects to be returned. Limit can range between
1and100, and the default is10.Minimum value is
1, maximum value is100. Default value is10. -
A cursor for use in pagination.
starting_afteris 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_fOo123in order to fetch the next page of the list. -
A cursor for use in pagination.
ending_beforeis 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_bAr123in order to fetch the previous page of the list.
curl \
--request GET 'https://api.1099policy.com/api/v1/jobs'
[
{
"address": {
"country": "null",
"line1": "92 Geary St",
"line2": "null",
"locality": "San Francisco",
"postalcode": 94114,
"region": "CA"
},
"category_code": "jc_MTqpkbkp6G",
"created": 1646818364,
"custom_metadata": {
"campaign": "Red Bull"
},
"description": "Install fiber optic cable from back to the front of the store.",
"entity": "en_Ah3tqYn",
"id": "string",
"name": "Field technician",
"wage": 15000,
"wage_type": "flatfee",
"years_experience": 10
}
]