List card designs
curl --request GET \
--url https://sg.sandbox.api.reap.global/card-designs/ \
--header 'Authorization: Bearer <token>' \
--header 'Reap-Version: <reap-version>'const options = {
method: 'GET',
headers: {'Reap-Version': '<reap-version>', Authorization: 'Bearer <token>'}
};
fetch('https://sg.sandbox.api.reap.global/card-designs/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://sg.sandbox.api.reap.global/card-designs/"
headers = {
"Reap-Version": "<reap-version>",
"Authorization": "Bearer <token>"
}
response = requests.get(url, headers=headers)
print(response.text){
"items": [
{
"id": "<string>",
"name": "<string>",
"isPhysicalCapable": true,
"embossNameSupported": true,
"isDefault": true,
"status": "ACTIVE"
}
]
}Card Designs
List card designs
Returns the card designs. By default only active designs (usable for new cards) are returned; pass the status query parameter to widen or change the filter.
GET
/
card-designs
/
List card designs
curl --request GET \
--url https://sg.sandbox.api.reap.global/card-designs/ \
--header 'Authorization: Bearer <token>' \
--header 'Reap-Version: <reap-version>'const options = {
method: 'GET',
headers: {'Reap-Version': '<reap-version>', Authorization: 'Bearer <token>'}
};
fetch('https://sg.sandbox.api.reap.global/card-designs/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://sg.sandbox.api.reap.global/card-designs/"
headers = {
"Reap-Version": "<reap-version>",
"Authorization": "Bearer <token>"
}
response = requests.get(url, headers=headers)
print(response.text){
"items": [
{
"id": "<string>",
"name": "<string>",
"isPhysicalCapable": true,
"embossNameSupported": true,
"isDefault": true,
"status": "ACTIVE"
}
]
}Authorizations
API key as Bearer token
Headers
API version (YYYY-MM-DD)
Available options:
2025-02-14 Example:
"2025-02-14"
Query Parameters
Filter card designs by status (comma-separated). Defaults to active designs only.
Available options:
ACTIVE, ARCHIVED Response
200 - application/json
Response for status 200
Card designs assigned to the project
Show child attributes
Show child attributes