GET
/
offers
curl --request GET \
  --url https://schoolmaker.co/api/v1/offers \
  --header 'Authorization: Bearer <token>'
{
  "offers": [
    {
      "id": "<string>",
      "name": "<string>",
      "description": "<string>",
      "prices": [
        {
          "id": "<string>",
          "amount": 123,
          "currency": "<string>"
        }
      ],
      "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.

Response

200 - application/json
List of offers
offers
object[]