cURL
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>" } ]
Create people
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Default Response
The response is of type object[].
object[]