GET
/
members
/
{id}
/
accesses
curl --request GET \
  --url https://schoolmaker.co/api/v1/members/{id}/accesses \
  --header 'Authorization: Bearer <token>'
{
  "accesses": [
    {
      "id": "<string>",
      "offer_id": "<string>",
      "price": {
        "id": "<string>",
        "amount": 123,
        "currency": "<string>",
        "price_type": "<string>",
        "recurring_interval": "<string>",
        "recurring_interval_count": 123
      },
      "is_active": true,
      "access_created_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

200 - application/json
Member accesses
accesses
object[]