Authentication & Headers
All Acceldata APIs require authentication using accessKey
and secretKey
. These keys are generated from the ADOC UI. For more information, see API Keys.
Required Headers
Header | Type | Description |
---|---|---|
accessKey | string | API access key generated from ADOC UI |
secretKey | string | API secret key generated from ADOC UI |
accept | string | Always set to application/json |
content-type | string | Use application/json for requests with a body |
Example
curl -X GET "https://<HOST>/catalog-server/api/assets"
-H "accept: application/json"
-H "accessKey: <your-access-key>"
-H "secretKey: <your-secret-key>"
Was this page helpful?