Metadata

Get Crms

GET
Retrieve a list of CRMs available for this account from the database based on the public token.

Headers

x-revert-public-tokenstringRequired

Response

This endpoint returns an object
status
string
data
list of objects
error
stringOptional
GET
1curl https://api.revert.dev/metadata/crms \
2 -H "x-revert-public-token: string"
200Retrieved
1{
2 "status": "string",
3 "data": [
4 {
5 "integrationId": "string",
6 "name": "string",
7 "imageSrc": "string",
8 "status": "active",
9 "scopes": [
10 "string"
11 ],
12 "clientId": "string"
13 }
14 ],
15 "error": "string"
16}