POST
/
offers
/
{id}
/
accesses
curl --request POST \
  --url https://schoolmaker.co/api/v1/offers/{id}/accesses \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "access": {
    "member_email": "<string>",
    "status": true,
    "first_name": "<string>",
    "last_name": "<string>"
  }
}'
{
  "id": "<string>",
  "member_id": "<string>",
  "email": "<string>",
  "is_active": true,
  "offer_name": "<string>",
  "offer_id": "<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.

Path Parameters

id
string
required

Body

application/json
access
object

Response

201 - application/json
Access created or updated
id
string

Access ID

member_id
string

Member ID

email
string

Member email

is_active
boolean

Access active status

offer_name
string

Offer name

offer_id
string

Offer ID

created_at
string

Creation timestamp