API Keys

We use API keys to authenticate requests. You can view and manage your API keys through the vivenu Dashboard or via the API.

Endpoints

The API Key Object

Attributes

_id
Required
string

The ID of the API key.

name
Required
string

An internal name to identify the API key.

key
Required
string

The secret key to be used to authenticate against the API.

createdAt
Required
string date-time

An ISO Timestamp indicating when the API Key was created.

updatedAt
Required
string date-time

An ISO Timestamp indicating when the API Key was last updated.

Optional Attributes

Collapse all
Was this section helpful?
YesNo
Example
{
"_id": "string",
"active": true,
"name": "string",
"sellerId": "string",
"orgId": "string",
"key": "key_somerandomcombinationofnumbersandletters",
"createdBy": {
"type": "USER",
"id": "string"
},
"createdAt": "2030-01-23T23:00:00.123Z",
"updatedAt": "2030-01-23T23:00:00.123Z"
}
ORG

Get or Create a Default API Key

Payload

sellerId
Required
string

The seller ID to get or create the API key for.

Responses
200
OK
400
Bad Request
401
Unauthorized

Was this section helpful?

YesNo
post
/api/keys/default
{
"sellerId": "string"
}
Response
application/json
{
"_id": "string",
"active": true,
"name": "string",
"sellerId": "string",
"orgId": "string",
"key": "key_somerandomcombinationofnumbersandletters",
"createdBy": {
"type": "USER",
"id": "string"
},
"createdAt": "2030-01-23T23:00:00.123Z",
"updatedAt": "2030-01-23T23:00:00.123Z"
}