Get a Promotion

Get by ID

GET https://api.moltin.com/v2/promotions/:id

Path Parameters

NameTypeDescription

id

string

The ID of the promotion

Authorization

string

The Bearer token to grant access to the API

{
    "data": {
        "type": "promotion",
        "id": "3cc6829b-e57f-4ead-b52e-8e23e119bfba",
        "name": "Promo #1",
        "description": "Initial Promotion",
        "enabled": true,
        "promotion_type": "fixed_discount",
        "schema": {
            "currencies": [
                {
                    "currency": "GBP",
                    "amount": 1100
                },
                {
                    "currency": "USD",
                    "amount": 900
                }
            ]
        },
        "start": "2017-01-13T00:00:00Z",
        "end": "2018-01-13T00:00:00Z",
        "meta": {
            "timestamps": {
                "created_at": "2018-05-09T20:02:01.036Z",
                "updated_at": "2018-05-09T20:02:01.036Z"
            }
        }
    }
}
curl -X GET https://api.moltin.com/v2/promotions/:id \
     -H "Authorization: Bearer XXXX"

Last updated