CompanyUpdate Billing Recipients

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-emails

Path Parameters

NameDataTypeValue
company_token
StringwNpOV47PLkRuS8taZpMaPQDTU

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": []
}