GET orangepay/notification2/{AgentId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
AgentId

string

Required

Body Parameters

None.

Response Information

Resource Description

NotificationResponse
NameDescriptionTypeAdditional information
responseStatus

string

None.

responseMessage

string

None.

data

Collection of NotificationData

None.

Response Formats

application/json, text/json

Sample:
{
  "responseStatus": "sample string 1",
  "responseMessage": "sample string 2",
  "data": [
    {
      "desc": "sample string 1"
    },
    {
      "desc": "sample string 1"
    }
  ]
}

application/xml, text/xml

Sample:
<NotificationResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SB_Mobile_OrangePay.Models">
  <data>
    <NotificationData>
      <desc>sample string 1</desc>
    </NotificationData>
    <NotificationData>
      <desc>sample string 1</desc>
    </NotificationData>
  </data>
  <responseMessage>sample string 2</responseMessage>
  <responseStatus>sample string 1</responseStatus>
</NotificationResponse>