Skip to main content
GET
/
api
/
v1
/
pipelines
/
{id}
Buscar pipeline por ID
curl --request GET \
  --url https://api.g1.datacrazy.io/api/v1/pipelines/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "9c315181-85f2-4772-bd46-8b261599e382",
  "createdAt": "2025-09-09T16:25:16.727Z",
  "updatedAt": "2025-09-19T20:39:49.680Z",
  "deletedAt": null,
  "name": "pipe 1",
  "description": "Pipeline para gerenciamento de vendas online",
  "group": "Clientes recorrentes",
  "stagesCount": 3,
  "permissions": true
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Response

200 - application/json
id
string

ID da pipeline.

Example:

"9c315181-85f2-4772-bd46-8b261599e382"

createdAt
string<date-time>

Data de criação da pipeline.

Example:

"2025-09-09T16:25:16.727Z"

updatedAt
string<date-time>

Data da última atualização da pipeline.

Example:

"2025-09-19T20:39:49.680Z"

deletedAt
string<date-time>

Data de exclusão da pipeline (se aplicável).

Example:

null

name
string

Nome da pipeline.

Example:

"pipe 1"

description
string

Descrição da pipeline.

Example:

"Pipeline para gerenciamento de vendas online"

group
string

Grupo da pipeline.

Example:

"Clientes recorrentes"

stagesCount
number

Número de etapas na pipeline.

Example:

3

permissions
object

Permissões aplicadas na pipeline.

Example:

true