Josh Jeffries
02/26/2023, 5:56 PM{
"url": "<https://api.jobadder.com/v2/users>",
"parameters": {
"updatedAt": [
">2000-01-05T00:00:00Z"
],
"include": [
"inactive, deleted"
]
},
"body": null,
"headers": {
"User-Agent": "python-requests/2.28.2",
"Accept-Encoding": "gzip, deflate",
"Accept": "*/*",
"Connection": "keep-alive",
"Authorization": "Bearer 86f6f5d182afa48305d9ea85a439d1b9"
},
"http_method": "GET"
}
the updatedAt and the include are specified request parameters, on the next page the request looks like
{
"url": "<https://eu2api.jobadder.com/v2/users>",
"parameters": {
"updatedAt": [
">2000-01-05T00:00:00Z",
">2000-01-05T00:00:00Z"
],
"include": [
"Inactive",
"Deleted",
"inactive, deleted"
],
"offset": [
"100"
]
},
"body": null,
"headers": {
"User-Agent": "python-requests/2.28.2",
"Accept-Encoding": "gzip, deflate",
"Accept": "*/*",
"Connection": "keep-alive",
"Authorization": "Bearer 86f6f5d182afa48305d9ea85a439d1b9"
},
"http_method": "GET"
}
and again on the next one its
{
"url": "<https://eu2api.jobadder.com/v2/users>",
"parameters": {
"updatedAt": [
">2000-01-05T00:00:00Z",
">2000-01-05T00:00:00Z",
">2000-01-05T00:00:00Z"
],
"include": [
"Inactive",
"Deleted",
"Inactive",
"Deleted",
"inactive, deleted"
],
"offset": [
"200"
]
},
"body": null,
"headers": {
"User-Agent": "python-requests/2.28.2",
"Accept-Encoding": "gzip, deflate",
"Accept": "*/*",
"Connection": "keep-alive",
"Authorization": "Bearer 86f6f5d182afa48305d9ea85a439d1b9"
},
"http_method": "GET"
}
also related it doesn't seem to be passing through the page_size eitherSherif Nada
02/27/2023, 2:41 AMSherif Nada
02/27/2023, 2:41 AMJosh Jeffries
02/27/2023, 9:38 AMAlexandre Girard (Airbyte)
02/27/2023, 3:21 PMJosh Jeffries
02/27/2023, 4:07 PMAlexandre Girard (Airbyte)
02/27/2023, 4:14 PM