Run in Apidog
Returns a paginated list of deals owned by the authenticated employer. Each item includes the deal title, payment token, current status, and signed date.
Request Code Samples
curl --location 'https://useme.com/api/2.0/deals/?page=&page_size=' \
--header 'Authorization: Token <here-paste-your-token>' Responses Paginated list of deals owned by the authenticated employer.
{
"data" : {
"count" : 2 ,
"next" : null ,
"previous" : null ,
"results" : [
{
"title" : "Website redesign" ,
"payment_token" : "UMTESTTOKEN01" ,
"status" : "processing" ,
"signed_date" : "2024-03-20"
} ,
{
"title" : "Logo design" ,
"payment_token" : "UMTESTTOKEN02" ,
"status" : "created" ,
"signed_date" : "2024-03-21"
}
]
}
} Modified at 2026-07-27 12:18:25