InstantTransfer
  1. Armax API
InstantTransfer
  • PayStar API Documentation
    • Introduction
    • Authorization Bearer
    • Sandbox
    • Callbacks
    • Glossary
    • Dictionarys
      • Currencys
      • Telecom operators
      • Bank names
    • Deposit direct (Merch)
      • Create | Deposit order
      • Check status | Deposit order
    • Deposit reverse (Gateway)
      • Create | Reverse deposit order
      • Check status | Deposit order
    • Withdrawal direct (Merch)
      • Create | Withdrawal order
      • Check status | Withdrawal order
    • Balance
      • GET Merchant balance
  • Armax API
    • POST Armax Order
      POST
  • Butler API Bridge
    • Authorization Bearer
    • Withdrawal direct | PDO API Bridge
      • Check status | Withdrawal order
      • Create | Withdrawal Order
    • PSP Deposit Order
      • PSP Deposit Order
      • PSP Deposit Order status
    • Merch Deposit Order
      • Merch Deposit Order
      • Merch Deposit Order status
  • CoreFy API
    • Withdrawal Order
      POST
    • Payment Order
      POST
  • PayNetEasy API Bridg
    • Introduсtion
    • Autorization
    • Glossary
    • POST order
      POST
    • POST Status order
      POST
  1. Armax API

POST Armax Order

Developing
POST
/pays-api2012/api/v1/pays

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/xml

Example
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<request>
    <auth dealer="***" login="***" password="***" terminal="***"/>
    <add-payment>
        <payment date="2024-08-26T17:24:29" id="111111111">
            <extras phone="" />
            <from commission="0.00" currency="643" summ="15000.00"/>
            <to account="676767667" props="" provider="10001"/>
        </payment>
    </add-payment>
</request>

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/pays-api2012/api/v1/pays' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/xml' \
--data-raw '<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<request>
    <auth dealer="***" login="***" password="***" terminal="***"/>
    <add-payment>
        <payment date="2024-08-26T17:24:29" id="111111111">
            <extras phone="" />
            <from commission="0.00" currency="643" summ="15000.00"/>
            <to account="676767667" props="" provider="10001"/>
        </payment>
    </add-payment>
</request>'

Responses

🟢200Success
application/json
Body

Example
{}
Modified at 2024-12-12 13:18:26
Previous
GET Merchant balance
Next
Authorization Bearer
Built with