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 application session ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending withias_fOo123
, your subsequent call can includestarting_after=ias_fOo123
in order to fetch the next page of the list. -
ending_before string
A cursor for use in pagination.
ending_before
is an application session ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting withias_bAr123
, your subsequent call can includeending_before=ias_bAr123
in order to fetch the previous page of the list.
curl \
-X GET https://api.1099policy.com/api/v1/apply/sessions
[
{
"id": "ias_01FZCHXE7KNQHE1T3S8AXG2QZE",
"url": "http://apply.1099policy.com?...",
"step": "final_review",
"quote": "qt_5DciVga8Kt",
"created": 1646818364,
"expired": false,
"cancel_url": "https://1099jobcloud.com/1099policy/cancel",
"success_url": "https://1099jobcloud.com/1099policy/success"
}
]