Run in Apidog
Returns full details of a single deal owned by the authenticated employer, identified by its payment token. Includes current status, signed date, currency, and billing breakdown for both sides.
Request Code Samples
curl --location 'https://useme.com/api/2.0/deal//' \
--header 'Authorization: Token <here-paste-your-token>' Responses The deal details were successfully retrieved.
{
"data" : {
"contractor_email" : "contractor@email.com" ,
"partner_id" : "partner-deal-2001" ,
"status" : "created" ,
"payment_token" : "UMCSDVCX" ,
"currency" : "EUR" ,
"signed_date" : "2024-03-20" ,
"billing" : {
"commission" : "120.00" ,
"employer" : {
"net_amount" : "1000.00" ,
"vat_amount" : "230.00" ,
"gross_amount" : "1230.00"
} ,
"freelancer" : {
"net_amount" : "850.00" ,
"vat_amount" : "0.00" ,
"pit_advance" : "0.00" ,
"gross_amount" : "850.00"
}
}
}
}
Modified at 2026-07-27 12:18:25