POST api/v1/IR/AddCustomerPayment/{bookletGuid}/{status}/{deviceType}/{deviceModel}/{osVersion}/{screenName}

This api is used to add payment against a booklet with status

Request Information

URI Parameters

NameDescriptionTypeAdditional information
bookletGuid

booklet Guid is used to specif booklet

string

Required

status

status is pending or accepted

string

Required

deviceType

which type of device calling this api

string

Required

deviceModel

which model device has

string

Required

osVersion

what is the Operation system of this device

string

Required

screenName

from which screen this api is calling

string

Required

Body Parameters

None.

Response Information

Resource Description

IRResult
NameDescriptionTypeAdditional information
data

Object

None.

Status

integer

None.

StatusText

string

None.

Response Formats

application/json, text/json

Sample:
{
  "data": {},
  "Status": 2,
  "StatusText": "sample string 3"
}

application/xml, text/xml

Sample:
<IRResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mofr.Data">
  <Status>2</Status>
  <StatusText>sample string 3</StatusText>
  <data />
</IRResult>