Account
Bank
Transfer
Discount
KYC
Supported
User
Get API Keys
Get user API keys.
GET
/
user
/
apikeys
Copy
curl --request GET \
--url https://staging-api.getpartna.com/v4/user/apikeys \
--header 'x-api-key: <api-key>' \
--header 'x-api-user: <api-key>'
Copy
{
"data": {
"Apikeys": [
{
"Apikey": "91179ede",
"DeletedAt": "0001-01-01T00:00:00Z",
"Expirable": true,
"Expiration": 1781105204,
"Keyname": "getonly",
"Username": "chang"
}
]
},
"message": "success"
}
Response
200 - application/json
get user apikeys ok
The response is of type object
.
Copy
curl --request GET \
--url https://staging-api.getpartna.com/v4/user/apikeys \
--header 'x-api-key: <api-key>' \
--header 'x-api-user: <api-key>'
Copy
{
"data": {
"Apikeys": [
{
"Apikey": "91179ede",
"DeletedAt": "0001-01-01T00:00:00Z",
"Expirable": true,
"Expiration": 1781105204,
"Keyname": "getonly",
"Username": "chang"
}
]
},
"message": "success"
}
Assistant
Responses are generated using AI and may contain mistakes.