GET
/
api
/
v1
/
hooks
/
tag_added_sample
Tag added sample
curl --request GET \
  --url https://api.kajabi.com/api/v1/hooks/tag_added_sample \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "type": "contacts",
    "attributes": {
      "name": "<string>",
      "email": "<string>",
      "phone_number": "<string>",
      "business_number": "<string>",
      "subscribed": true,
      "address_line_1": "<string>",
      "address_line_2": "<string>",
      "address_city": "<string>",
      "address_state": "<string>",
      "address_country": "<string>",
      "external_user_id": "<string>",
      "address_zip": "<string>",
      "custom_1": "<string>",
      "custom_2": "<string>",
      "custom_3": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    },
    "relationships": {
      "tags": {
        "data": [
          {
            "id": "<string>",
            "type": "contact_tags"
          }
        ]
      }
    }
  }
]

Authorizations

Authorization
string
header
required

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

Response

Success, returns sample webhook payload

id
string
type
enum<string>
Available options:
contacts
attributes
object
relationships
object