Benefits

These resources relate to benefits for a fanclub:

GET /benefits

This endpoint returns the benefits associated with a fanclub and the plans that use them.

Request

No parameters required (besides your API key of course).

Responses

Success: Returns benefits associated with active subscription

{
    "status":"ok",
    "benefits":[
        {
            "id":14,
            "summary":"Benefit Summary 3",
            "details":null,
            "benefit_type":"online",
            "image_url":null,
            "plans":[
                {
                    "id":1693,
                    "name":"Plan Name 2",
                    "class":"plan-name-2"
                }
            ]
        }
    ]
}

Success: Returns no benefits for a customer without an active subscription

{
    "status":"ok",
    "benefits":[]
}