curl -L \
--request POST \
--url '/api/v2/customers/{customerId}/initiatives/consolidated-batch' \
--header 'Authorization: Bearer JWT' \
--header 'Content-Type: application/json' \
--data '{
"initiatives": [
{
"initiative": {
"billingType": "billable",
"externalId": "text",
"name": "text",
"description": "text",
"callSign": "text",
"clientExternalId": "text",
"unitIncrements": 1,
"status": "active"
},
"codes": {
"isCodesEmpty": true,
"codes": [
{
"codeExternalId": "text",
"codeTypeExternalId": "text"
}
]
},
"entryValidationRules": {
"isRequiredCodeTypeExternalIdsEmpty": true,
"requiredCodeTypeExternalIds": [
"text"
]
}
}
]
}'