API Description
- This API facilitates the updating of billing recipient emails. Users can specify the recipients whose emails need to be updated.
API Endpoint
PUT
/api/v1/company/{company_token}/billing-receipt-emailsPath Parameters
| Name | DataType | Value |
|---|---|---|
company_token | String | wNpOV47PLkRuS8taZpMaPQDTU |
Body Payload
🔽 Payload
{
"billing_emails": [{
"email": "abc@a.com",
"active": "1"
}]
}Responses
🟢 Success
{
"success": true,
"message": "Data has been successfully updated.",
"data": {
"billing_emails": [{
"email": "abc@a.com",
"active": "1"
}]
},
"meta": {},
"errors": []
}