GET/v1/contacts/{id}

Get contact

Retrieve a single contact by their unique identifier.

Authentication

Requires a Bearer token (API key) in the Authorization header.

Path parameters

idstringrequired

Unique identifier (UUID) or email address of the contact.

Response

200Contact details

{
  "success": true,
  "data": {
    "id": "string",
    "email": "string",
    "firstName": "string",
    "lastName": "string",
    "subscribed": true,
    "suppressed": true,
    "suppressionReason": "string",
    "suppressedAt": "2024-01-01T00:00:00.000Z",
    "createdAt": "2024-01-01T00:00:00.000Z"
  }
}

404Contact not found

{
  "success": false,
  "message": "string"
}