curl --request POST \
--url https://api.onsi.com/v1/members/jobs \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"actions": [
{
"email": "[email protected]",
"firstName": "John",
"lastName": "Smith",
"tier": "Gold",
"type": "Add",
"phone": "+447123456789",
"workerId": "ID_123",
"accountDetails": {
"accountHolder": "John Smith",
"sortCode": "123456",
"accountNumber": "12345678"
},
"enablePayroll": true,
"dob": "1990-01-01",
"gender": "Female"
}
]
}
'