Useme API docs
  1. Deals
Useme API docs
  • Guides
    • Introduction
    • Getting Started
    • Creating Contractors
    • Creating Deals
  • Reference
    • Categories
      • List categories
    • Contractors
      • Create a new contractor
    • Deals
      • Create a new deal
        POST
      • Retrieve a specific deal
        GET
      • Upload a file for a deal
        POST
  1. Deals

Retrieve a specific deal

GET
https://sandbox.useme.com/api/1.0/deal/{deal_pk}/
Fetches details of a specific deal using its ID. Only the employer associated with the user can access this information.

Request

Path Params

Header Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://sandbox.useme.com/api/1.0/deal//' \
--header 'Authorization;'

Responses

🟢200Returns the details of the specified deal.
application/json
Body

Example
{
    "success": true,
    "data": {
        "id": 1001,
        "contractor_email": "contractor@email.com",
        "partner_id": 2001
    }
}
🟠404Deal not found or the user does not have permission to view it.
Modified at 2024-05-07 08:34:28
Previous
Create a new deal
Next
Upload a file for a deal
Built with