• Authentication/
    Application Keys/
    Application Keys

    Application Keys

    The Keys Object

    AttributeTypeDescription
    idstringSpecifies the unique id of the application key.
    namestringSpecifies the name of the application key.
    typestringRepresents the type of object being returned. Always application_key.
    client_idstringRepresents the unique client_id.
    client_secretstringRepresents the unique client_secret.
    meta.timestamps.last_used_atstringSpecifies the approximate last used date of the key. A null value indicates that the key has not been used.
    meta.timestamps.created_atstringSpecifies the creation date of the key.
    meta.timestamps.updated_atstringSpecifies 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"
        }
    }
    

    Was this helpful?