Skip to main content

PagoEfectivo Create Disposition Request

usernamestringrequired

SOAP account username.

Example: username_SOAP
passwordstring<password>required

SOAP account password.

Example: password_SOAP
mtidstringrequired

Unique merchant transaction identifier.

Example: mtid_soap
amountnumber<double>required

Payment amount.

Example: 10
currencystringrequired

Three-letter ISO 4217 currency code.

Possible values: >= 3 characters and <= 3 characters, Value must match regular expression ^[A-Z]{3}$

Example: USD
merchantClientIdstringrequired

Unique customer identifier provided by the merchant.

Example: customer1
okUrlstring<uri>required

URL used after successful payment authorization.

Example: https://www.paysafecard.com/okURL
nokUrlstring<uri>required

URL used after unsuccessful or cancelled payment authorization.

Example: https://www.paysafecard.com/nokURL
pnUrlstring<uri>required

Payment notification URL.

Example: https://www.paysafecard.com/pnURL
customerDetailstring

Customer identifier supplied by the merchant.

Example: customer_id
subIdstring

Reporting criterion used to classify the transaction.

Example: reporting_criteria
dispositionRestrictions object[]required

Payment restrictions applied to the disposition.

  • Array [
  • keystringrequired

    Restriction applied to the transaction.

    Possible values: [INSTRUMENT]

    Example: INSTRUMENT
    valuestringrequired

    Available payment instrument.

    Possible values: [paysafecard, pagoefectivo]

    Example: pagoefectivo
  • ]
  • PagoEfectivo Create Disposition Request
    {
    "username": "username_SOAP",
    "password": "password_SOAP",
    "mtid": "mtid_soap",
    "amount": 10,
    "currency": "USD",
    "merchantClientId": "customer1",
    "okUrl": "https://www.paysafecard.com/okURL",
    "nokUrl": "https://www.paysafecard.com/nokURL",
    "pnUrl": "https://www.paysafecard.com/pnURL",
    "customerDetail": "customer_id",
    "subId": "reporting_criteria",
    "dispositionRestrictions": [
    {
    "key": "INSTRUMENT",
    "value": "pagoefectivo"
    }
    ]
    }