POST
/
api
/
ext
/
v1
/
people
curl --request POST \
  --url https://staging-api.covver.io/api/ext/v1/people \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "people": [
    {
      "firstName": "<string>",
      "lastName": "<string>",
      "email": "<string>",
      "birthDate": "<string>",
      "startDate": "<string>",
      "externalId": "<string>",
      "location": "<string>",
      "department": "<string>",
      "addBalance": 123
    }
  ],
  "companyId": "<string>",
  "collectionId": "<string>",
  "amount": 123,
  "shouldSendEmail": true
}'
[
  {
    "id": "<string>",
    "firstName": "<string>",
    "lastName": "<string>",
    "email": "<string>"
  }
]
You can also pass an optional parameter to specify how much credits/gifts to reward them

Authorizations

Authorization
string
header
required

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

Body

application/json
people
object[]
required
collectionId
string
required
companyId
string
amount
number
shouldSendEmail
boolean

Response

200
application/json
Default Response
id
string
required
firstName
string
required
lastName
string
required
email
string
required