List Request Types
curl --request GET \
--url https://api.kimp360.com/card-types \
--header 'x-api-key: <api-key>'import requests
url = "https://api.kimp360.com/card-types"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.kimp360.com/card-types', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"id": "<string>",
"name": "<string>",
"products": [
"<string>"
],
"formats": [
"<string>"
],
"softwares": [
"<string>"
]
}
]
}Resources
List Request Types
Retrieves a list of all request types.
GET
/
card-types
List Request Types
curl --request GET \
--url https://api.kimp360.com/card-types \
--header 'x-api-key: <api-key>'import requests
url = "https://api.kimp360.com/card-types"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.kimp360.com/card-types', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"id": "<string>",
"name": "<string>",
"products": [
"<string>"
],
"formats": [
"<string>"
],
"softwares": [
"<string>"
]
}
]
}Was this page helpful?