Dispute Notification Settings¶
Retrieving the Tenant's Notification Settings¶
Swagger Page¶
Permission¶
Dispute Configuration : READ
Example Request¶
curl -X GET 'https://arc-aegis.billtrust.com/dispute/v1/tenants/{tenantId}/notification-settings' \
-H 'accept: application/json' \
-H 'Content-Type: application/json' \
-H 'X-Billtrust-Api-Key: <API key value>'
Example Response¶
{
"id": "{settingsId}",
"tenantId": "{tenantId}",
"allowDailyDigest": true,
"timeZone": "America/New York",
"time": "08:00 PM",
"allowAllUpdates": true,
"createUser": "{userId}",
"createDate": "2021-03-28T16:01:34.429Z",
"updateUser": "{userId}",
"updateDate": "2021-03-28T16:01:34.429Z"
}
Update the Tenant's Notification Settings¶
Swagger Page¶
Permission¶
Dispute Configuration : UPDATE
Example Request¶
curl -X PUT 'https://arc-aegis.billtrust.com/dispute/v1/tenants/{tenantId}/notification-settings' \
-H 'accept: application/json' \
-H 'Content-Type: application/json' \
-H 'X-Billtrust-Api-Key: <API key value>' \
-d '{ "allowDailyDigest": true, "timeZone": "America/New York", "time": "08:00 PM", "allowAllUpdates": true }
Example Response¶
{
"id": "{settingsId}",
"tenantId": "{tenantId}",
"allowDailyDigest": true,
"timeZone": "America/New York",
"time": "08:00 PM",
"allowAllUpdates": true,
"createUser": "{userId}",
"createDate": "2021-03-28T16:01:34.429Z",
"updateUser": "{userId}",
"updateDate": "2021-03-28T16:01:34.429Z"
}