GET
/
campaigns
/
{id}
curl --request GET \
  --url https://api.truecall.com/campaigns/{id} \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "data": {
    "id": "<string>",
    "api_key": "<string>",
    "name": "<string>",
    "created_at": 1718104009000,
    "sources_config": {
      "allow": [
        "<string>"
      ],
      "block": [
        "<string>"
      ],
      "allow_all": 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

ID of the item to retrieve.

Response

200
application/json
Campaign details response
status
enum<string>
Available options:
success,
error
Example:

"success"

data
object