InstantTransfer
  1. PSP Deposit Order
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
        POST
      • PSP Deposit Order status
        GET
    • 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. PSP Deposit Order

PSP Deposit Order

POST
/api/v1/integration/psp-deposit-order/v2
PSP Deposit Order
curl --request POST \
  --url https://example.com/api/v1/integration/psp-deposit-order/v2 \
  --header 'Authorization: Bearer Your Token' \
  --header 'Content-Type: application/json' \
  --data '{
  "externalId": "Test01",
  "amount": 1000,
  "properties": [
    {
      "key": "CardNumber",
      "value": "1111123456781111"
    }
  ]
}'

Request

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

Example
{
  "amount": "1000",
  "externalId": "12345",
  "propertiess": [
    {
      "key": "CardNumber",
      "value": "123456789012"
    }
  ]
}

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 '/api/v1/integration/psp-deposit-order/v2' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
  "amount": "1000",
  "externalId": "12345",
  "propertiess": [
    {
      "key": "CardNumber",
      "value": "123456789012"
    }
  ]
}'

Responses

🟢200Success
application/json
Body

Example
{
    "amount": 1000,
    "externalId": "q12345",
    "pspDepositOrderID": "9dc24b8a-0c32-4437-9645-8f53cd07e1e8",
    "status": "Created",
    "statusDescrption": "1-1000"
}
Modified at 2024-12-12 13:18:26
Previous
PSP Deposit Order
Next
PSP Deposit Order status
Built with