POST api/billing/bill/notify

Request Information

URI Parameters

None.

Body Parameters

BillNotificationEntity
NameDescriptionTypeAdditional information
sms

boolean

None.

whatsapp

boolean

None.

billId

integer

None.

customerId

integer

None.

billNumber

string

None.

Request Formats

application/json, text/json

Sample:
{
  "sms": true,
  "whatsapp": true,
  "billId": 3,
  "customerId": 4,
  "billNumber": "sample string 5"
}

application/xml, text/xml

Sample:
<BillNotificationEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/pos_crm_api_DAL.Entities">
  <billId>3</billId>
  <billNumber>sample string 5</billNumber>
  <customerId>4</customerId>
  <sms>true</sms>
  <whatsapp>true</whatsapp>
</BillNotificationEntity>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.