Skip to main content

Documentación

Get Application Settings
    • api-version

    • The requested API version

      3.0

    • ApiKey

    • Standard Authorization header using the ApiKey scheme.

    • success

    • Indicates whether the request was successful.

    • statusCode

    • The HTTP status code of the response.

    • message

    • A human-readable message describing the result.

    • data

    • An object containing the application settings.

    • success

    • Indicates whether the request was successful.

    • statusCode

    • The HTTP status code of the response.

    • message

    • Api Key was not provided.

    • data

    • null

    • success

    • Indicates whether the request was successful.

    • statusCode

    • The HTTP status code of the response.

    • message

    • Not found.

    • data

    • null

    • success

    • Indicates whether the request was successful.

    • statusCode

    • The HTTP status code of the response.

    • message

    • Unexpected error occurred. Please contact support.

    • data

    • null

  • /isoapi/settings

  • 200 OK

  • curl -X GET
    https://boarding.valitor.com/isoapi/settings
    -H 'ApiKey: my-ApiKey'
    
  • {
      "success": true,
      "statusCode": 200,
      "message": "Created",
      "data": {
        "fees": {
          "merchantServiceChargeFees": [
            {
              "name": "string",
              "fixedValue": 0.1,
              "percentageValue": 0.1
            }
          ]
        },
        "restrictedAmexMccs": [
          {
            "countryCode": "string",
            "currencyCode": "string",
            "mccID": 0
          }
        ],
        "eCommerceSolutions": [
          "string"
        ]
      }
    }
  • 401 Unauthorized

  • curl -X GET
    https://boarding.valitor.com/isoapi/settings
    -H 'ApiKey: my-ApiKey'
    
  • {
      "success": false,
      "statusCode": 401,
      "message": "Api Key was not provided",
      "data": null
    }
  • 404 Not Found

  • curl -X GET
    https://boarding.valitor.com/isoapi/settings
    -H 'ApiKey: my-ApiKey'
    
  • {
      "success": false,
      "statusCode": 404,
      "message": "Not Found",
      "data": null
    }
  • 500 Internal Server Error

  • curl -X GET
    https://boarding.valitor.com/isoapi/settings
    -H 'ApiKey: my-ApiKey'
    
  • {
      "success": false,
      "statusCode": 500,
      "message": "Unexpected error occured. Please contact support.",
      "data": null
    }