Acquiring

Start an acquiring for a payment

Initiate an acquiring transaction for a payment

SecurityLinkcy-Auth
Request
Request Body schema: application/json
required
amount
required
number
endUserId
string <uuid>
redirectUrl
required
string

Browser will load this URL once payment is completed and can be used to continue the payment journey.

The redirectUrl must be fully qualified for HTTP POST requests.

reference
string
Responses
200

OK

400

Bad Request

401

Unauthorized

403

Forbidden

post/api/partner/acquiring/payment
Request samples
application/json
{
  • "amount": 0,
  • "endUserId": "120e9d1f-8444-4b91-85e8-5b208615a3e5",
  • "redirectUrl": "string",
  • "reference": "string"
}
Response samples
application/json
{
  • "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  • "webPage": {
    }
}

Start an acquiring for a top-up

Initiate an acquiring transaction for an account load

SecurityLinkcy-Auth
Request
Request Body schema: application/json
required
amount
required
number
targetLedgerId
required
string <uuid>

Identifies the ledger that will be topped up

redirectUrl
required
string

Browser will load this URL once payment is completed and can be used to continue the payment journey.

The redirectUrl must be fully qualified for HTTP POST requests.

reference
string
endUserId
string <uuid>
Responses
200

OK

400

Bad Request

401

Unauthorized

403

Forbidden

409

Conflict

post/api/partner/acquiring/account-load
Request samples
application/json
{
  • "amount": 0,
  • "targetLedgerId": "c08a7469-a75d-455d-a40f-2578815cd03c",
  • "redirectUrl": "string",
  • "reference": "string",
  • "endUserId": "120e9d1f-8444-4b91-85e8-5b208615a3e5"
}
Response samples
application/json
{
  • "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  • "webPage": {
    }
}

Get acquiring transaction information

Get all information about an acquiring transaction using its ID.

SecurityLinkcy-Auth
Request
path Parameters
transactionId
required
string <uuid>
Responses
200

OK

400

Bad Request

401

Unauthorized

403

Forbidden

404

Not Found

get/api/partner/acquiring/transactions/{transactionId}
Request samples
Response samples
application/json
{
  • "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  • "type": "INTER_LEDGER",
  • "paymentType": "MONEY_TRANSFER",
  • "status": "APPROVED",
  • "creationDate": "2019-08-24T14:15:22Z",
  • "amount": 0,
  • "currency": "EUR",
  • "information": {
    },
  • "sender": {
    },
  • "receiver": {
    }
}