Skip to main content
POST
/
deals
Create deal
curl --request POST \
  --url https://connect.pingback.com/v2/deals \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "contactId": "36c8c534-fcca-4f79-b3e6-c492f82c2ccc",
  "pipelineId": "34fb6a9f-6d59-4eb8-add6-735fa4efdddd",
  "stageId": "9c7f1a05-15d1-4332-8f9a-f6bdfeb2eeee",
  "attributes": {
    "pb_name": "Deal Name",
    "pb_amount": "2300000"
  }
}
'
{
"message": "Deal created",
"data": {
"id": "ea8a2a47-2a05-4a43-b284-35df0ea46333",
"contactId": "36c8c534-fcca-4f79-b3e6-c492f82c2ccc",
"email": "example@email.com"
}
}

Authorizations

x-api-key
string
header
required

Headers

x-developer-mode
boolean
x-api-key
string
required

Body

application/json
contactId
string<uuid>
required
pipelineId
string<uuid>
required
stageId
string<uuid>
required
attributes
object

Response

Deal created

message
string
data
object