API Key
Delete an API Key
Organization
Signature Request Invite
Signature Request
Witness
Organization Link
Organization Member
Price Oracle
- About Price Oracle
- GETGet Median MXN/USD
- GETList Median MXN/USD
- GETGet Daily MXN/USD
- GETList Daily MXN/USD
- GETGet Weekly MXN/USD
- GETList Weekly MXN/USD
- GETGet Monthly MXN/USD
- GETList Monthly MXN/USD
- GETGet Median USDC/USD
- GETList Median USDC/USD
- GETGet Daily USDC/USD
- GETList Daily USD/USDC
- GETGet Weekly USDC/USD
- GETList Weekly USDC/USD
- GETGet Monthly USDC/USD
- GETList Monthly USDC/USD
- GETGet Median USDC/MXN
- GETList Median USDC/MXN
- GETGet Daily USDC/MXN
- GETList Daily USDC/MXN
- GETGet Weekly USDC/MXN
- GETList Weekly USDC/MXN
- GETGet Monthly USDC/MXN
- GETList Monthly USDC/MXN
API Key
Delete an API Key
Deletes an existing API key. Only available for members or API keys of the organization.
DELETE
/
api-key
curl --request DELETE \
--url https://api.plumaa.id/rest/v1/api-key \
--header 'Authorization: Bearer <token>'
{
"id": "<any>",
"enabled": true,
"name": "<string>",
"secret": "<any>",
"organization": {
"id": "<any>",
"name": "<string>",
"logo": "<any>",
"emailAddress": "<any>",
"quota": {
"id": "<any>",
"API": true,
"groupedNOM151": 123,
"nom151": 123
},
"policies": {
"signatureRequest": {
"conservation": "NOM151"
}
},
"createdAt": "<any>",
"updatedAt": "<any>"
},
"createdAt": "<any>",
"updatedAt": "<any>"
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
Response
200 - application/json
An API key allows to make calls through the API. It is linked to an organization.
curl --request DELETE \
--url https://api.plumaa.id/rest/v1/api-key \
--header 'Authorization: Bearer <token>'
{
"id": "<any>",
"enabled": true,
"name": "<string>",
"secret": "<any>",
"organization": {
"id": "<any>",
"name": "<string>",
"logo": "<any>",
"emailAddress": "<any>",
"quota": {
"id": "<any>",
"API": true,
"groupedNOM151": 123,
"nom151": 123
},
"policies": {
"signatureRequest": {
"conservation": "NOM151"
}
},
"createdAt": "<any>",
"updatedAt": "<any>"
},
"createdAt": "<any>",
"updatedAt": "<any>"
}