• Authentication/
    Application Keys/
    Get an Application Key

    Get an Application Key

    GET Get an Application Key

    https://api.moltin.com/v2/application-keys/:id
    

    Parameters

    Path Parameters

    NameRequiredTypeDescription
    idRequiredstringThe unique identifier of the application key to be retrieved.

    Headers

    NameRequiredTypeDescription
    AuthorizationRequiredstringThe Bearer token required to get access to the API.

    Request Example - Curl

    curl -X GET https://api.moltin.com/v2/application-keys/:id \
         -H "Authorization: Bearer XXXX"
    

    Response Example

    200 OK

    {
        "data": {
            "id": "ba9ef8a0-075d-4a6f-b888-8fb080a1ae5d",
            "name": "New key 2",
            "type": "application_key",
            "client_id": "d41f447c7b87eb043ad55f641c7e5e3f176e5843c2",
            "meta": {
                "timestamps": {
                    "last_used_at": "2022-10-11T12:44:16.309Z",
                    "created_at": "2022-10-11T12:44:16.309Z",
                    "updated_at": "2022-10-11T12:44:16.309Z"
                }
            }
        },
        "links": {
            "self": "https://api.moltin.com/v2/application-keys/ba9ef8a0-075d-4a6f-b888-8fb080a1ae5d"
        }
    }
    

    Was this helpful?

    Previous
    Get all Application Keys