Skip to main content
GET
/
api
/
v1
/
deals
/
{id}
Get a deal by ID with pipeline, stage, and contact details.
curl --request GET \
  --url https://api.backside.app/api/v1/deals/{id} \
  --header 'Authorization: Bearer <token>'
{
  "created_at": "2023-11-07T05:31:56Z",
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "metadata": "<unknown>",
  "name": "<string>",
  "pipeline_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "stage_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "tenant_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "updated_at": "2023-11-07T05:31:56Z",
  "contacts": [
    {
      "contact_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "created_at": "2023-11-07T05:31:56Z",
      "deal_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "is_primary": true,
      "metadata": "<unknown>",
      "tenant_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "updated_at": "2023-11-07T05:31:56Z",
      "introduced_by": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "role": "<string>"
    }
  ],
  "pipeline_name": "<string>",
  "stage_name": "<string>",
  "amount": 123,
  "closed_at": "2023-11-07T05:31:56Z",
  "confidence": 123,
  "contact_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "currency": "<string>",
  "deleted_at": "2023-11-07T05:31:56Z",
  "description": "<string>",
  "expected_close_date": "2023-12-25",
  "lost_reason": "<string>",
  "next_step": "<string>",
  "organization_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "source": "<string>",
  "value_period": "<string>",
  "won_reason": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string<uuid>
required

Deal ID

Response

Deal details

created_at
string<date-time>
required
id
string<uuid>
required
metadata
any
required
name
string
required
pipeline_id
string<uuid>
required
stage_id
string<uuid>
required
tenant_id
string<uuid>
required
updated_at
string<date-time>
required
contacts
object[]
required
pipeline_name
string
required
stage_name
string
required
amount
number<double> | null
closed_at
string<date-time> | null
confidence
integer<int32> | null
contact_id
string<uuid> | null
currency
string | null
deleted_at
string<date-time> | null
description
string | null
expected_close_date
string<date> | null
lost_reason
string | null
next_step
string | null
organization_id
string<uuid> | null
source
string | null
value_period
string | null
won_reason
string | null