Log in to see your API keys
API Key | Label | Last Used | |
---|---|---|---|
Webex Interact API uses "access token" from an API project to authenticate requests. You must include it in the Header ( “X-AUTH-KEY”) parameter in your requests.
You can create a new access token under "Developers --> Create API project"
curl --request POST \
--url https://api.webexinteract.com/v1/sms/ \
--header 'X-AUTH-KEY: {access token}' \
#replace {access token} with a valid token from your API project
--header 'content-type: application/json' \
--data '{
//refer sample body request below
}'
curl --request POST ^
--url https://api.webexinteract.com/v1/sms/ ^
--header 'X-AUTH-KEY: {access token}' ^
#replace {access token} with a valid token from your API project
--header 'content-type: application/json' ^
--data '{
//refer sample body request below
}'