Application Keys
The Keys Object
Attribute | Type | Description |
---|---|---|
id | string | Specifies the unique id of the application key. |
name | string | Specifies the name of the application key. |
type | string | Represents the type of object being returned. Always application_key . |
client_id | string | Represents the unique client_id . |
client_secret | string | Represents the unique client_secret . |
meta.timestamps.last_used_at | string | Specifies the approximate last used date of the key. A null value indicates that the key has not been used. |
meta.timestamps.created_at | string | Specifies the creation date of the key. |
meta.timestamps.updated_at | string | Specifies the last updated date of the key. |
Sample Object
{
"data": {
"id": "2a0949f6-661b-4a19-b0ed-e97b41e98623",
"name": "Test keys",
"type": "application_key",
"client_id": "d4fcc576f661778c29fcd7b78461da8291cc6b003d",
"client_secret": "8c52f85e3d6915e76f97139bdd71780f4ce0a8f13a",
"meta": {
"timestamps": {
"last_used_at": "2022-08-24T19:53:52.474283337Z",
"created_at": "2022-08-24T19:53:52.474283337Z",
"updated_at": "2022-08-24T19:53:52.474283337Z"
}
}
},
"links": {
"self": "https://api.moltin.com/v2/application-keys/2a0949f6-661b-4a19-b0ed-e97b41e98623"
}
}