Skip to main content
GET
/
account-crm-pipeline-deal
/
{id}
curl --request GET \
  --url 'https://sell.ia.proativia.com/api/v1/account-crm-pipeline-deal/cldeal001' \
  --header 'Token: SEU_TOKEN_DE_API'
{
  "id": "cldeal001",
  "title": "Contrato Empresa X",
  "stageId": "clstg0001",
  "leadId": "cllead001",
  "dealOwner": "cluser001",
  "value": 15000,
  "status": "open",
  "expectedCloseDate": "2025-08-01T00:00:00.000Z",
  "createdAt": "2025-06-15T14:30:00.000Z"
}

Requisição

GET https://sell.ia.proativia.com/api/v1/account-crm-pipeline-deal/{id}
Token
string
required
Seu token de autenticação.
id
string
required
ID do negócio a ser consultado.

Resposta

Retorna o objeto completo do negócio.
id
string
Identificador único do negócio.
title
string
Título do negócio.
stageId
string | null
ID do estágio vinculado.
leadId
string | null
ID do lead vinculado.
dealOwner
string | null
ID do usuário responsável.
value
number | null
Valor estimado do negócio.
status
string | null
Status do negócio.
expectedCloseDate
string | null
Data prevista de fechamento (ISO 8601).
createdAt
string
Data de criação (ISO 8601).

Exemplos

curl --request GET \
  --url 'https://sell.ia.proativia.com/api/v1/account-crm-pipeline-deal/cldeal001' \
  --header 'Token: SEU_TOKEN_DE_API'
{
  "id": "cldeal001",
  "title": "Contrato Empresa X",
  "stageId": "clstg0001",
  "leadId": "cllead001",
  "dealOwner": "cluser001",
  "value": 15000,
  "status": "open",
  "expectedCloseDate": "2025-08-01T00:00:00.000Z",
  "createdAt": "2025-06-15T14:30:00.000Z"
}

Authorizations

Token
string
header
required

Token de autenticacao gerado na plataforma Sell.IA.

Path Parameters

id
string
required

Identificador único do recurso.

Response

Negócio encontrado.

id
string
stageId
string | null
leadId
string | null
dealOwner
string | null
title
string
value
number | null
status
string | null
expectedCloseDate
string<date-time> | null
createdAt
string<date-time>