POST api/Store/AddCustomerAcknowledgement?isFromStartTrip={isFromStartTrip}
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| isFromStartTrip | boolean | Default value is False | 
Body Parameters
AddCustomerAcknowledgement| Name | Description | Type | Additional information | 
|---|---|---|---|
| BusinessId | integer | None. | |
| LoginUserId | integer | None. | |
| OrderId | integer | None. | |
| Customerid | integer | None. | |
| Phone | string | None. | |
| Otp | integer | None. | |
| source | string | None. | |
| CashAmount | decimal number | None. | 
Request Formats
application/json, text/json
            Sample:
        
{
  "BusinessId": 1,
  "LoginUserId": 2,
  "OrderId": 3,
  "Customerid": 4,
  "Phone": "sample string 5",
  "Otp": 6,
  "source": "sample string 7",
  "CashAmount": 8.0
}
        application/xml, text/xml
            Sample:
        <AddCustomerAcknowledgement xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <BusinessId>1</BusinessId> <LoginUserId>2</LoginUserId> <OrderId>3</OrderId> <Customerid>4</Customerid> <Phone>sample string 5</Phone> <Otp>6</Otp> <source>sample string 7</source> <CashAmount>8</CashAmount> </AddCustomerAcknowledgement>
application/x-www-form-urlencoded
            Sample:
    
Sample not available.
Response Information
Resource Description
VCAPIResponse| Name | Description | Type | Additional information | 
|---|---|---|---|
| Version | string | None. | |
| dateTime | string | None. | |
| StatusCode | integer | None. | |
| ErrorMessage | string | None. | |
| Result | Object | None. | 
Response Formats
application/json, text/json
            Sample:
        
{
  "Version": "1.0.0",
  "dateTime": "2025/10/31 15:44:42",
  "StatusCode": 1,
  "ErrorMessage": "sample string 2",
  "Result": {}
}
        application/xml, text/xml
            Sample:
<VCAPIResponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <StatusCode>1</StatusCode> <ErrorMessage>sample string 2</ErrorMessage> <Result /> </VCAPIResponse>