POST
/
payroll_payments
curl --request POST \
  --url https://sandbox.withclasp.com/payroll_payments \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "member": "<string>",
  "payday": "2023-12-25",
  "period_start": "2023-12-25",
  "period_end": "2023-12-25",
  "hours_worked": "<string>",
  "gross_pay": "<string>"
}'
{
  "id": "<string>",
  "member": "<string>",
  "payday": "2023-12-25",
  "period_start": "2023-12-25",
  "period_end": "2023-12-25",
  "hours_worked": "<string>",
  "gross_pay": "<string>"
}

Authorizations

Authorization
string
header
required

API Key authentication with required prefix "Bearer"

Body

Response

201 - application/json

The response is of type object.