Skip to main content
POST
/
api
/
v1
/
deals
/
{id}
/
move
Move a deal to a different stage. Records a stage change audit entry.
curl --request POST \
  --url https://api.backside.app/api/v1/deals/{id}/move \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "stage_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'
{
  "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",
  "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

Body

application/json
stage_id
string<uuid>
required

Response

Deal moved

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
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