API Key and Session Tokens
At this section we describe how to work with API Keys and Session Tokens API
API Key
API Key Structure
Get list of API Keys
GET https://pci.vaultera.co/api/v1/api_keys?api_key={YOUR_API_KEY}{
"data": [
{
"id": "4cdced9e-31ef-4f36-ad9a-3c9512f5646e",
"type": "api_key",
"attributes": {
"id": "4cdced9e-31ef-4f36-ad9a-3c9512f5646e",
"api_key": "...4a39b3",
"description": "Application key",
"status": "active",
"created_at": "2020-06-08T05:49:10.979Z",
"revoked_at": null
}
}
]
}Create API Key
POST https://pci.vaultera.co/api/v1/api_keys?api_key={YOUR_API_KEY}
{
"api_key": {
"description": "API KEY description"
}
}{
"data": {
"id": "4cdced9e-31ef-4f36-ad9a-3c9512f5646e",
"type": "api_key",
"attributes": {
"id": "4cdced9e-31ef-4f36-ad9a-3c9512f5646e",
"api_key": "4cdced9e31ef4f36ad9a4a39b3",
"description": "Application key",
"status": "active",
"created_at": "2020-06-08T05:49:10.979Z",
"revoked_at": null
}
}
}Get API Key by ID
Revoke API Key
Session Token operations
Last updated