List API Keys
Retrieve a paginated collection of API Keys belonging to your Organization
GET /api_keys
curl \
-X GET https://api.arta.io/api_keys \
-H "Authorization: ARTA_APIKey s0e1t2e3c4a5s6t7r8o9n10o11m12y"
Response examples (200)
# Headers
content-type: application/json
x-arta-request-id: FkBjuxbwLLTx4RoAARkx
# Payload
{
"items": [
{
"created_at": "2021-01-21T17:22:08.818747",
"id": 2,
"is_testing": false,
"token": "******************eQ0Rqp",
"updated_at": "2021-01-21T17:22:08.818747"
}
],
"metadata": {
"page": 1,
"page_size": 20,
"total_count": 1
}
}