Webex Connect (CPaaS)
Webex Connect (CPaaS)
Access the API
Use a Webex personal access token to call the digital asset onboarding APIs for Email, Live Chat, and In-App assets.
anchorBefore you begin
anchorConfirm that:
- your Webex Connect organization is active;
- your user has permission to manage the required digital assets;
- the personal access token includes the scope required by the asset operation;
- you know the organization ID to send in
x-organization-id; and - you are using the base URL and API version shown in the API Reference.
anchorAuthenticate the request
anchorSend the personal access token using the bearer scheme:
Authorization: Bearer <personal-access-token>
Personal access tokens are the supported authentication method for these digital asset APIs.
anchorProvide the organization and request details
anchorInclude the organization ID and JSON media type where the operation requires them:
x-organization-id: <organization-id>
Content-Type: application/json
You can also provide a unique trackingid header to help correlate the request during troubleshooting.
Use the exact HTTP method, path, query parameters, and request body defined for the asset operation. For example, Email asset creation uses POST /v2/digital/app with channel=email.
anchorTry an operation in the Developer Portal
anchor- Open the required asset operation under API Reference.
- Select Use personal access token.
- Enter the organization ID and all required parameters and fields.
- Review the generated request and select Run.
- Record the HTTP status and the
transidreturned in the response.