Class EnableNotificationRequest
An Enable Notification Request is used to enable notification settings that are related to a particular Notification (NSID).
Properties
| Field/Tag Name | Value | Required | Notes |
|---|---|---|---|
| custServProviderId | Y | Partner Id | |
| entity_id | Y | Merchant Id | |
| request_email | Y | registered at ProfitStars; email format | |
| nsid | Y | Provided by EPS; numeric | |
| to_address | Y | Multiple email addresses separated by commas, do not include spaces | |
| subject | N | text(255) | |
| description | N | text (long) | |
| case_reason | Application Special Circumstances, Update Bank Account Information, Update Business Information, | N |
Example EnableNotificationRequest
Input Method: XML
<xml>
<custServProviderId>######</custServProviderId>
<entity_id>######</entity_id>
<request_email>none@example.com</request_email>
<nsid>#######</nsid>
<to_address>none@example.com</to_address>
<subject></subject>
<description></description>
<case_reason></case_reason>
</xml>
Input Method: JSON
{
"custServProviderId": "######",
"entity_id": "######",
"request_email": " none@example.com",
"nsid": "#######",
"to_address": " none@example.com",
"subject": "",
"description": "",
"case_reason": ""
}