- TLC Home Home
- Discussions Discussions
- Documentation Documentation
- Knowledge Base Knowledge Base
- Education Education
- Blog Blog
- Support Desk Support Desk
This article provides information needed to begin using the Tealium v2 API. The previous v1 API is still available, but will eventually be deprecated.
In this article:
Each API has its own endpoint and supported parameters. The root URL for all API requests is:
https://api.tealiumiq.com/v2
An API endpoint is documented with a specific HTTP method and path, for example:
GET /revisions
Some endpoints show placeholder variables ( {variable}
) to indicate values that you supply. Most endpoints require the name of the your iQ Tag Management (TiQ) account and profile in the path of the call.
Example API endpoint path for TiQ revisions:
https://api.tealiumiq.com/v2/accounts/{account}/{profile}/revisions
The API supports JavaScript Object Notation (JSON). API requests that use JSON require the following header setting:
Content-Type: application/json
Most responses are in JSON format. Documentation for each endpoint contains example cURL calls and responses.
Authentication (login) requires an API key from Tealium iQ Tag Management. Learn more about Managing and Generating API Keys.
The authentication call has two parameters: username and the API key. The API key is used in place of a password to log into the API. After a successful login to the API, the authentication call returns a JWT, referred to as a bearer token. The bearer token, which is valid for 30 minutes, is the value that must be used to authenticate subsequent API calls.
Do not generate a new bearer token for every call. Use the token until it expires. Failure to use the token in this manner will result in auth call throttling at Tealium's discretion.
POST /v2/auth
The following cURL request shows the variables required for the API key exchange for a JWT token. The URL, username, and API key are encoded.
curl -X POST \ https://api.tealiumiq.com/v2/auth \ -H 'Content-Type: application/x-www-form-urlencoded' \ --data-urlencode 'username={email}' \
--data-urlencode 'key={api_key}'
curl -X POST \ https://api.tealiumiq.com/v2/auth \ -H 'Content-Type: application/x-www-form-urlencoded' \ --data-urlencode 'username=tealium.user@yourdomain.com' \
--data-urlencode 'key=7O4Pjn8tuc0%5B3Nc2)%7DyXJW8EaCuDRA1U8Jn%23p)qc*O94(*ubIeEUz%25%5D%242~)WKlLB'
* Trying 10.220.2.176... * Connected to qa20-api.tealiumiq.com (10.220.2.176) port 443 (#0) * TLS 1.2 connection using TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 * Server certificate: *.tealiumiq.com * Server certificate: DigiCert SHA2 Secure Server CA * Server certificate: DigiCert Global Root CA > POST /v2/auth HTTP/1.1 > Host: qa20-api.tealiumiq.com > User-Agent: curl/7.43.0 > Accept: */* > cache-control: no-cache > content-type: application/x-www-form-urlencoded > Content-Length: 127 > * upload completely sent off: 127 out of 127 bytes < HTTP/1.1 200 OK < Date: Wed, 14 Feb 2018 19:04:22 GMT < Content-Type: application/json < Content-Length: 893 < Connection: keep-alive < Cache-Control: no-cache,no-store,must-revalidate < Pragma: no-cache < Expires: 0 < X-XSS-Protection: 1;mode=block < X-NodeId: i-0afb3e9b53ba15930 < X-Version: 1.0.130-SNAPSHOT < Set-Cookie: rememberMe=deleteMe; Path=/urest_service; Max-Age=0; Expires=Tue, 13-Feb-2018 19:10:41 GMT < * Connection #0 to host qa20-api.tealiumiq.com left intact {"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzUxMiJ9.eyJzdWIiOiJtYXJjLmhpcG9saXRvQHRlYWxpdW0uY29tIiwibmJmIjoxNTE4NjM1NDQxLCJpc3MiOiJodHRwczovL2FwaS50ZWFsaXVtaXEuY29tIiwiZXhwIjoxNTE4NjM3MjQxLCJpYXQiOjE1MTg2MzU0NDF9.EPM_hfocfiF4SJnW0gBrGb9BuYIxsyoRdIWeuMTDLEBroVixmkFnPRC3G9zfn1hEpGfOGL6OKSHPIm5GwJQCNyIX7cE8umheIyTk8xxOuCAKjTOCip_6-AaFBcj6nLxgyez4OgxLral1XmZxyb9mP-vrKeDDQUf4ygdhgeDYoqnfQtIZ8TA68Pcx3H7BLgd0MJjTh7S74-9bWX95PkDDizTg0ia1dIbHsMXsB1ZA6gS-WPrCuy0CNA0IvJo0XuFNoOF2mazREYvG-Yp0-EzlMTa3W_EoI_93F9RbG-soUrLdV5IKav4TjwWfvyOZTx4Tb_Je9NgJ_EfeWW_E84pSAtCo7QX2yXZ3MYROkNnRdsQG4XhaFUbXwJnUghl65MHyjQxINDtbB5vujk04ctnuQvSO-sZslQxXGJm1sBiY3eFa5U4-L0V4MCJ3s9h_RbRyPt07CD4YX85kRJ5mj8x6nFHDE2iwrpSnNlQ_3KctqlJHSNdYhWzSnLpfz5qKq_Uv6XA88lUoRMiCC-Hy2uZe_vrqA0p_-BbrXPvw8olhd0SGD36D982bxKkcJR84ACUPU36FSBRWs_HRWEyjTwWR33oRv3vEIpzlUvp7TEGiD7A5ucNvLUT1yV_8YdsNLEevFg7WWjXkKnYDprq1QikO6KV1drWfrJnLldJ4ziTtK20"}
Copyright All Rights Reserved © 2008-2023