Skip to main content
POST
/
api
/
payments
/
payment-details
/
register
cURL
curl --request POST \
  --url https://api.pricenow.dev/api/payments/payment-details/register \
  --header 'Content-Type: application/json' \
  --header 'accept-language: <accept-language>' \
  --header 'pratiq-channel-uuid: <pratiq-channel-uuid>' \
  --data '
{
  "redirectUrls": {
    "success": "<string>",
    "error": "<string>",
    "cancel": "<string>"
  },
  "isDefault": true,
  "paymentMethods": [
    "TWI"
  ]
}
'
{
  "data": {
    "transactionId": "<string>",
    "redirectUrl": "<string>"
  }
}

Headers

accept-language
enum<string>
required

Language of the response

Available options:
en,
de,
fr,
it
pratiq-channel-uuid
string
required

UUID of the sales channel

Body

application/json
redirectUrls
object
required
isDefault
boolean
required
paymentMethods
enum<string>[]
Available options:
TWI,
PAP,
DIB,
EPS,
REK,
PFP,
PFC,
VIS,
ECA

Response

200 - application/json

Successful response

data
object
required