Reference for https://paymentrequest.api.epay.eu/v1/paymentrequest/list/

List payment request

Url: https://paymentrequest.api.epay.eu/v1/paymentrequest/list/

HTTP Method: POST

Message direction Format Body
Request Xml Example,Schema
Request Json Example
Response Xml Example,Schema
Response Json Example

The following is an example request Xml body:

<listpaymentrequestrequest xmlns="EPay.API.PaymentRequest.ListPaymentRequest.Request">
  <authentication xmlns="EPay.API">
    <merchantnumber>String content</merchantnumber>
    <password>String content</password>
  </authentication>
  <language xmlns="EPay.API">String content</language>
  <localtimezone xmlns="EPay.API">true</localtimezone>
  <paging>
    <exclusivestartkey>9223372036854775807</exclusivestartkey>
    <pagesize>2147483647</pagesize>
  </paging>
  <sorting>createdascending</sorting>
  <status>open</status>
</listpaymentrequestrequest>

The following is an example request Json body:

{
	"authentication":{
		"merchantnumber":"String content",
		"password":"String content"
	},
	"language":"String content",
	"localtimezone":true,
	"paging":{
		"exclusivestartkey":9223372036854775807,
		"pagesize":2147483647
	},
	"sorting":0,
	"status":0
}

The following is an example response Xml body:

<listpaymentrequestresponse xmlns="EPay.API.PaymentRequest.ListPaymentRequest.Response">
  <message xmlns="EPay.API">String content</message>
  <reason xmlns="EPay.API">ok</reason>
  <requestresponselogid xmlns="EPay.API">9223372036854775807</requestresponselogid>
  <result xmlns="EPay.API">true</result>
  <paging>
    <lastevaluatedkey>9223372036854775807</lastevaluatedkey>
    <pagesize>2147483647</pagesize>
  </paging>
  <paymentrequestlist>
    <paymentrequest>
      <amount>2147483647</amount>
      <created>1999-05-31T11:20:00</created>
      <currency>String content</currency>
      <key>String content</key>
      <link>String content</link>
      <numberoftransactions>2147483647</numberoftransactions>
      <paymentrequestid>9223372036854775807</paymentrequestid>
      <reference>String content</reference>
    </paymentrequest>
    <paymentrequest>
      <amount>2147483647</amount>
      <created>1999-05-31T11:20:00</created>
      <currency>String content</currency>
      <key>String content</key>
      <link>String content</link>
      <numberoftransactions>2147483647</numberoftransactions>
      <paymentrequestid>9223372036854775807</paymentrequestid>
      <reference>String content</reference>
    </paymentrequest>
  </paymentrequestlist>
</listpaymentrequestresponse>

The following is an example response Json body:

{
	"message":"String content",
	"reason":0,
	"requestresponselogid":9223372036854775807,
	"result":true,
	"paging":{
		"lastevaluatedkey":9223372036854775807,
		"pagesize":2147483647
	},
	"paymentrequestlist":[{
		"amount":2147483647,
		"created":"\/Date(928149600000+0000)\/",
		"currency":"String content",
		"key":"String content",
		"link":"String content",
		"numberoftransactions":2147483647,
		"paymentrequestid":9223372036854775807,
		"reference":"String content"
	}]
}

The following is the request Xml Schema:

<xs:schema xmlns:tns="EPay.API.PaymentRequest.ListPaymentRequest.Request" elementFormDefault="qualified" targetNamespace="EPay.API.PaymentRequest.ListPaymentRequest.Request" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:import namespace="EPay.API.PaymentRequest.ListPaymentRequest" />
  <xs:import namespace="EPay.API.PaymentRequest.Request" />
  <xs:import namespace="http://schemas.microsoft.com/2003/10/Serialization/" />
  <xs:complexType name="listpaymentrequestrequest">
    <xs:complexContent mixed="false">
      <xs:extension xmlns:q1="EPay.API.PaymentRequest.Request" base="q1:request">
        <xs:sequence>
          <xs:element minOccurs="0" name="paging" nillable="true" type="tns:paging" />
          <xs:element minOccurs="0" name="sorting" nillable="true" type="tns:sorting" />
          <xs:element minOccurs="0" name="status" nillable="true" xmlns:q2="EPay.API.PaymentRequest.ListPaymentRequest" type="q2:status" />
        </xs:sequence>
      </xs:extension>
    </xs:complexContent>
  </xs:complexType>
  <xs:element name="listpaymentrequestrequest" nillable="true" type="tns:listpaymentrequestrequest" />
  <xs:complexType name="paging">
    <xs:sequence>
      <xs:element minOccurs="0" name="exclusivestartkey" nillable="true" type="xs:long" />
      <xs:element minOccurs="0" name="pagesize" type="xs:int" />
    </xs:sequence>
  </xs:complexType>
  <xs:element name="paging" nillable="true" type="tns:paging" />
  <xs:simpleType name="sorting">
    <xs:list>
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:enumeration value="createdascending">
            <xs:annotation>
              <xs:appinfo>
                <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">0</EnumerationValue>
              </xs:appinfo>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="createddescending">
            <xs:annotation>
              <xs:appinfo>
                <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</EnumerationValue>
              </xs:appinfo>
            </xs:annotation>
          </xs:enumeration>
        </xs:restriction>
      </xs:simpleType>
    </xs:list>
  </xs:simpleType>
  <xs:element name="sorting" nillable="true" type="tns:sorting" />
</xs:schema>

Additional request Xml Schemas:

<xs:schema xmlns:tns="http://schemas.microsoft.com/2003/10/Serialization/" attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://schemas.microsoft.com/2003/10/Serialization/" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:element name="anyType" nillable="true" type="xs:anyType" />
  <xs:element name="anyURI" nillable="true" type="xs:anyURI" />
  <xs:element name="base64Binary" nillable="true" type="xs:base64Binary" />
  <xs:element name="boolean" nillable="true" type="xs:boolean" />
  <xs:element name="byte" nillable="true" type="xs:byte" />
  <xs:element name="dateTime" nillable="true" type="xs:dateTime" />
  <xs:element name="decimal" nillable="true" type="xs:decimal" />
  <xs:element name="double" nillable="true" type="xs:double" />
  <xs:element name="float" nillable="true" type="xs:float" />
  <xs:element name="int" nillable="true" type="xs:int" />
  <xs:element name="long" nillable="true" type="xs:long" />
  <xs:element name="QName" nillable="true" type="xs:QName" />
  <xs:element name="short" nillable="true" type="xs:short" />
  <xs:element name="string" nillable="true" type="xs:string" />
  <xs:element name="unsignedByte" nillable="true" type="xs:unsignedByte" />
  <xs:element name="unsignedInt" nillable="true" type="xs:unsignedInt" />
  <xs:element name="unsignedLong" nillable="true" type="xs:unsignedLong" />
  <xs:element name="unsignedShort" nillable="true" type="xs:unsignedShort" />
  <xs:element name="char" nillable="true" type="tns:char" />
  <xs:simpleType name="char">
    <xs:restriction base="xs:int" />
  </xs:simpleType>
  <xs:element name="duration" nillable="true" type="tns:duration" />
  <xs:simpleType name="duration">
    <xs:restriction base="xs:duration">
      <xs:pattern value="\-?P(\d*D)?(T(\d*H)?(\d*M)?(\d*(\.\d*)?S)?)?" />
      <xs:minInclusive value="-P10675199DT2H48M5.4775808S" />
      <xs:maxInclusive value="P10675199DT2H48M5.4775807S" />
    </xs:restriction>
  </xs:simpleType>
  <xs:element name="guid" nillable="true" type="tns:guid" />
  <xs:simpleType name="guid">
    <xs:restriction base="xs:string">
      <xs:pattern value="[\da-fA-F]{8}-[\da-fA-F]{4}-[\da-fA-F]{4}-[\da-fA-F]{4}-[\da-fA-F]{12}" />
    </xs:restriction>
  </xs:simpleType>
  <xs:attribute name="FactoryType" type="xs:QName" />
  <xs:attribute name="Id" type="xs:ID" />
  <xs:attribute name="Ref" type="xs:IDREF" />
</xs:schema>

<xs:schema xmlns:tns="EPay.API.PaymentRequest.Request" elementFormDefault="qualified" targetNamespace="EPay.API.PaymentRequest.Request" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:import namespace="EPay.API" />
  <xs:complexType name="request">
    <xs:complexContent mixed="false">
      <xs:extension xmlns:q1="EPay.API" base="q1:request">
        <xs:sequence />
      </xs:extension>
    </xs:complexContent>
  </xs:complexType>
  <xs:element name="request" nillable="true" type="tns:request" />
</xs:schema>

<xs:schema xmlns:tns="EPay.API" elementFormDefault="qualified" targetNamespace="EPay.API" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:complexType name="request">
    <xs:sequence>
      <xs:element minOccurs="0" name="authentication" nillable="true" type="tns:authentication" />
      <xs:element minOccurs="0" name="language" nillable="true" type="xs:string" />
      <xs:element minOccurs="0" name="localtimezone" type="xs:boolean" />
    </xs:sequence>
  </xs:complexType>
  <xs:element name="request" nillable="true" type="tns:request" />
  <xs:complexType name="authentication">
    <xs:sequence>
      <xs:element minOccurs="0" name="merchantnumber" nillable="true" type="xs:string" />
      <xs:element minOccurs="0" name="password" nillable="true" type="xs:string" />
    </xs:sequence>
  </xs:complexType>
  <xs:element name="authentication" nillable="true" type="tns:authentication" />
</xs:schema>

<xs:schema xmlns:tns="EPay.API.PaymentRequest.ListPaymentRequest" elementFormDefault="qualified" targetNamespace="EPay.API.PaymentRequest.ListPaymentRequest" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:import namespace="http://schemas.microsoft.com/2003/10/Serialization/" />
  <xs:simpleType name="status">
    <xs:list>
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:enumeration value="open" />
          <xs:enumeration value="closed" />
          <xs:enumeration value="archived">
            <xs:annotation>
              <xs:appinfo>
                <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">3</EnumerationValue>
              </xs:appinfo>
            </xs:annotation>
          </xs:enumeration>
        </xs:restriction>
      </xs:simpleType>
    </xs:list>
  </xs:simpleType>
  <xs:element name="status" nillable="true" type="tns:status" />
</xs:schema>

<tns:schema targetNamespace="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://www.w3.org/2001/XMLSchema">
  <tns:element name="schema">
    <tns:complexType />
  </tns:element>
</tns:schema>

The following is the response Xml Schema:

<xs:schema xmlns:tns="EPay.API.PaymentRequest.ListPaymentRequest.Response" elementFormDefault="qualified" targetNamespace="EPay.API.PaymentRequest.ListPaymentRequest.Response" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:import namespace="EPay.API.PaymentRequest" />
  <xs:complexType name="listpaymentrequestresponse">
    <xs:complexContent mixed="false">
      <xs:extension xmlns:q1="EPay.API.PaymentRequest" base="q1:response">
        <xs:sequence>
          <xs:element minOccurs="0" name="paging" nillable="true" type="tns:paging" />
          <xs:element minOccurs="0" name="paymentrequestlist" nillable="true" type="tns:paymentrequestlist" />
        </xs:sequence>
      </xs:extension>
    </xs:complexContent>
  </xs:complexType>
  <xs:element name="listpaymentrequestresponse" nillable="true" type="tns:listpaymentrequestresponse" />
  <xs:complexType name="paging">
    <xs:sequence>
      <xs:element minOccurs="0" name="lastevaluatedkey" nillable="true" type="xs:long" />
      <xs:element minOccurs="0" name="pagesize" type="xs:int" />
    </xs:sequence>
  </xs:complexType>
  <xs:element name="paging" nillable="true" type="tns:paging" />
  <xs:complexType name="paymentrequestlist">
    <xs:sequence>
      <xs:element minOccurs="0" maxOccurs="unbounded" name="paymentrequest" nillable="true" type="tns:paymentrequest" />
    </xs:sequence>
  </xs:complexType>
  <xs:element name="paymentrequestlist" nillable="true" type="tns:paymentrequestlist" />
  <xs:complexType name="paymentrequest">
    <xs:sequence>
      <xs:element minOccurs="0" name="amount" type="xs:int" />
      <xs:element minOccurs="0" name="created" type="xs:dateTime" />
      <xs:element minOccurs="0" name="currency" nillable="true" type="xs:string" />
      <xs:element minOccurs="0" name="key" nillable="true" type="xs:string" />
      <xs:element minOccurs="0" name="link" nillable="true" type="xs:string" />
      <xs:element minOccurs="0" name="numberoftransactions" type="xs:int" />
      <xs:element minOccurs="0" name="paymentrequestid" type="xs:long" />
      <xs:element minOccurs="0" name="reference" nillable="true" type="xs:string" />
    </xs:sequence>
  </xs:complexType>
  <xs:element name="paymentrequest" nillable="true" type="tns:paymentrequest" />
</xs:schema>

Additional response Xml Schemas:

<xs:schema xmlns:tns="http://schemas.microsoft.com/2003/10/Serialization/" attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://schemas.microsoft.com/2003/10/Serialization/" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:element name="anyType" nillable="true" type="xs:anyType" />
  <xs:element name="anyURI" nillable="true" type="xs:anyURI" />
  <xs:element name="base64Binary" nillable="true" type="xs:base64Binary" />
  <xs:element name="boolean" nillable="true" type="xs:boolean" />
  <xs:element name="byte" nillable="true" type="xs:byte" />
  <xs:element name="dateTime" nillable="true" type="xs:dateTime" />
  <xs:element name="decimal" nillable="true" type="xs:decimal" />
  <xs:element name="double" nillable="true" type="xs:double" />
  <xs:element name="float" nillable="true" type="xs:float" />
  <xs:element name="int" nillable="true" type="xs:int" />
  <xs:element name="long" nillable="true" type="xs:long" />
  <xs:element name="QName" nillable="true" type="xs:QName" />
  <xs:element name="short" nillable="true" type="xs:short" />
  <xs:element name="string" nillable="true" type="xs:string" />
  <xs:element name="unsignedByte" nillable="true" type="xs:unsignedByte" />
  <xs:element name="unsignedInt" nillable="true" type="xs:unsignedInt" />
  <xs:element name="unsignedLong" nillable="true" type="xs:unsignedLong" />
  <xs:element name="unsignedShort" nillable="true" type="xs:unsignedShort" />
  <xs:element name="char" nillable="true" type="tns:char" />
  <xs:simpleType name="char">
    <xs:restriction base="xs:int" />
  </xs:simpleType>
  <xs:element name="duration" nillable="true" type="tns:duration" />
  <xs:simpleType name="duration">
    <xs:restriction base="xs:duration">
      <xs:pattern value="\-?P(\d*D)?(T(\d*H)?(\d*M)?(\d*(\.\d*)?S)?)?" />
      <xs:minInclusive value="-P10675199DT2H48M5.4775808S" />
      <xs:maxInclusive value="P10675199DT2H48M5.4775807S" />
    </xs:restriction>
  </xs:simpleType>
  <xs:element name="guid" nillable="true" type="tns:guid" />
  <xs:simpleType name="guid">
    <xs:restriction base="xs:string">
      <xs:pattern value="[\da-fA-F]{8}-[\da-fA-F]{4}-[\da-fA-F]{4}-[\da-fA-F]{4}-[\da-fA-F]{12}" />
    </xs:restriction>
  </xs:simpleType>
  <xs:attribute name="FactoryType" type="xs:QName" />
  <xs:attribute name="Id" type="xs:ID" />
  <xs:attribute name="Ref" type="xs:IDREF" />
</xs:schema>

<xs:schema xmlns:tns="EPay.API.PaymentRequest" elementFormDefault="qualified" targetNamespace="EPay.API.PaymentRequest" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:import namespace="EPay.API" />
  <xs:complexType name="response">
    <xs:complexContent mixed="false">
      <xs:extension xmlns:q1="EPay.API" base="q1:response">
        <xs:sequence />
      </xs:extension>
    </xs:complexContent>
  </xs:complexType>
  <xs:element name="response" nillable="true" type="tns:response" />
</xs:schema>

<xs:schema xmlns:tns="EPay.API" elementFormDefault="qualified" targetNamespace="EPay.API" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:import namespace="EPay.API.Response" />
  <xs:complexType name="response">
    <xs:sequence>
      <xs:element minOccurs="0" name="message" nillable="true" type="xs:string" />
      <xs:element minOccurs="0" name="reason" xmlns:q1="EPay.API.Response" type="q1:reason" />
      <xs:element minOccurs="0" name="requestresponselogid" nillable="true" type="xs:long" />
      <xs:element minOccurs="0" name="result" type="xs:boolean" />
    </xs:sequence>
  </xs:complexType>
  <xs:element name="response" nillable="true" type="tns:response" />
</xs:schema>

<xs:schema xmlns:tns="EPay.API.Response" elementFormDefault="qualified" targetNamespace="EPay.API.Response" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:import namespace="http://schemas.microsoft.com/2003/10/Serialization/" />
  <xs:simpleType name="reason">
    <xs:list>
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:enumeration value="ok">
            <xs:annotation>
              <xs:appinfo>
                <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">0</EnumerationValue>
              </xs:appinfo>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="error">
            <xs:annotation>
              <xs:appinfo>
                <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</EnumerationValue>
              </xs:appinfo>
            </xs:annotation>
          </xs:enumeration>
        </xs:restriction>
      </xs:simpleType>
    </xs:list>
  </xs:simpleType>
  <xs:element name="reason" nillable="true" type="tns:reason" />
</xs:schema>

<tns:schema targetNamespace="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://www.w3.org/2001/XMLSchema">
  <tns:element name="schema">
    <tns:complexType />
  </tns:element>
</tns:schema>