curl --request GET \
--url https://orbitflare.com/api/customer/v2/api-keys \
--header 'Authorization: Bearer <token>'{
"success": true,
"message": "<string>",
"data": {
"api_keys": [
{
"id": 123,
"name": "<string>",
"key_masked": "<string>",
"enabled": true,
"ip_whitelist": [
"127.0.0.1"
],
"created_at": "2023-11-07T05:31:56Z"
}
]
}
}List all API keys for the authenticated user (masked).
curl --request GET \
--url https://orbitflare.com/api/customer/v2/api-keys \
--header 'Authorization: Bearer <token>'{
"success": true,
"message": "<string>",
"data": {
"api_keys": [
{
"id": 123,
"name": "<string>",
"key_masked": "<string>",
"enabled": true,
"ip_whitelist": [
"127.0.0.1"
],
"created_at": "2023-11-07T05:31:56Z"
}
]
}
}Was this page helpful?