This method allows you to download a list of private exchange branded list. In response you will get a private exchange branded id which you will then use in publication method.
Authorization and access
Authorization process is described here. Each API request must also consist of unique Api-key obtained during application registration together with client_id and client_secret.
Url parameters and connection settings
- URL: https://api.platform.trans.eu
- Endpoint: /ext/corporate-exchange-api/v1/corporate-exchange
- Http Method: GET
Headers
- Accept: application/json
- Content-type: application/json
- Authorization: Bearer {access_token}
- Api-key: {unique_app_api-key}
Json response example
{
"corporate_exchanges": [
{
"created_at": "2022-09-23T09:03:12.168Z",
"created_by": {
"employee": {
"account_id": 11111
}
},
"id": "47613e74-243e-44b2-a13a-8b20ee62dbdd",
"member": {
"roles": [
"1_principal",
"3_administrator"
]
},
"name": "API"
},
{
"created_at": "2022-11-21T13:54:59.316Z",
"created_by": {
"employee": {
"account_id": 22222
}
},
"id": "b3a7b0f0-d7f4-4de8-aa6d-61b5d9bae999",
"member": {
"roles": [
"1_principal",
"3_administrator"
]
},
"name": "TEST-API"
}
],
"has_next_page": false,
"page": 1,
"page_size": 2
}