Merchant Brands
Searches Merchant Brands, primarily for configuring the set of Merchant Brand unique identifiers permitted on a card.
GET /api/v1/issuing/merchant_brands/{id}GET /api/v1/issuing/merchant_brands
Retrieve a Merchant Brand
GET /api/v1/issuing/merchant_brands/{id}
Retrieve a single merchant brand by its unique identifier.
Unique Identifier for the Merchant Brand.
Unique identifier for the merchant brand.
URL of the merchant brand logo image.
Current name of the merchant brand. Please note, this is subject to change at any time, please do not rely on it for business logic.
| Error status | Description |
|---|---|
| 400 | Possible errors: |
| 401 | Possible errors: |
| 429 | Too many requests |
| 500 | Service unavailable |
$curl --request GET \> --url 'https://api.sandbox.airwallex.com/api/v1/issuing/merchant_brands/merchant_brand_id' \> --header 'Authorization: Bearer {{ACCESS_TOKEN}}' \> --header 'Content-Type: application/json'
1{2 "id": "6c2dc266-09ad-4235-b61a-767c7cd6d6ea",3 "logo_url": "https://example.com/logo.png",4 "name": "Awesome Company"5}
List all Merchant Brands
GET /api/v1/issuing/merchant_brands
Retrieve all Merchant Brands matching (by prefix) the name provided. If no name is provided, all Merchant Brands will be returned in alphabetical order.
Merchant brand name to filter results.
Page marker used to retrieve the previous or next page of results. Set this field to the value returned by page_before or page_after to retrieve the previous or next page, respectively.
The number of items to return per page. Defaults to 100.
Unique identifier for the merchant brand.
URL of the merchant brand logo image.
Current name of the merchant brand. Please note, this is subject to change at any time, please do not rely on it for business logic.
A marker for retrieving the next page of results. Include this value in the page request parameter to retrieve subsequent pages.
A marker for retrieving the previous page of results. Include this value in the page request parameter to retrieve previous pages.
| Error status | Description |
|---|---|
| 400 | Possible errors: |
| 401 | Possible errors: |
| 429 | Too many requests |
| 500 | Service unavailable |
$curl --request GET \> --url 'https://api.sandbox.airwallex.com/api/v1/issuing/merchant_brands' \> --header 'Authorization: Bearer {{ACCESS_TOKEN}}' \> --header 'Content-Type: application/json'
1{2 "items": [3 {4 "id": "6c2dc266-09ad-4235-b61a-767c7cd6d6ea",5 "logo_url": "https://example.com/logo.png",6 "name": "Awesome Company"7 }8 ],9 "page_after": "YWZ0ZXI9MmFjNmEzMjQtM2IwNC00M2JkLThmNTUtOWQ5YzdmZjEzZGZm",10 "page_before": "YmVmb3JlPWVmZDQxZTk3LTU2MzctNDQ5MC04NjNkLTU2MDE5MjIwNDQ2YQ=="11}