Skip to main content
GET
/
dispositions
/
{id}
Gets a disposition.
curl --request GET \
  --url https://api.leadping.ai/dispositions/{id} \
  --header 'Authorization: <api-key>'
{
  "id": "<string>",
  "leadId": "<string>",
  "type": "<string>",
  "outcome": "<string>",
  "notes": "<string>",
  "timestamp": "2023-11-07T05:31:56Z",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://leadping.ai/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

JWT Authorization header using the Bearer scheme. (i.e. "Bearer 1234abcdef")

Path Parameters

id
string
required

The ID of the disposition to retrieve.

Response

Disposition was successfully retrieved.

Response model for disposition data.

id
string | null

The unique identifier of the disposition.

leadId
string | null

The ID of the lead this disposition is associated with.

type
string | null

The type of disposition (e.g., "Call", "Text").

outcome
string | null

The outcome or result of the disposition.

notes
string | null

Additional notes or comments about the disposition.

timestamp
string<date-time>

The timestamp when the disposition occurred.

createdAt
string<date-time>

The timestamp when the disposition was created.

updatedAt
string<date-time>

The timestamp when the disposition was last updated.