Skip to main content
GET
/
sources
/
{id}
Gets a source.
curl --request GET \
  --url https://api.leadping.ai/sources/{id} \
  --header 'Authorization: <api-key>'
{
  "id": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "modifiedAt": "2023-11-07T05:31:56Z",
  "name": "<string>",
  "description": "<string>",
  "enabled": true,
  "apiKey": "<string>",
  "user": {
    "id": "<string>",
    "name": "<string>"
  },
  "business": {
    "id": "<string>",
    "name": "<string>"
  }
}

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 source to retrieve.

Response

Source was successfully retrieved.

id
string | null
createdAt
string<date-time>
modifiedAt
string<date-time> | null
name
string | null
description
string | null
enabled
boolean
apiKey
string | null
user
object
business
object
I