Skip to main content

Documentación

Get boarding status of merchant
    • merchant_id

    • The unique identifier of the merchant.

    • 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 merchant's boarding status details.

    • 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

  • Get boarding status of merchant

  • 200 Accepted Request

  • curl -X GET
    https://boarding.valitor.com/isoapi/merchant/{merchant_id}/boardingstatus
    -H 'ApiKey: my-ApiKey'
    
  • {
      "success": true,
      "statusCode": 200,
      "message": "Success",
      "data": {
        "boarded": true,
        "createdDate": "2019-08-24T14:15:22Z",
        "boardedDate": "2019-08-24T14:15:22Z"
      }
    }
  • 401 Unauthorized

  • curl -X GET
    https://boarding.valitor.com/isoapi/merchant/{merchant_id}/boardingstatus
    -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/merchant/{merchant_id}/boardingstatus
    -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/merchant/{merchant_id}/boardingstatus
    -H 'ApiKey: my-ApiKey'
    
  • {
      "success": false,
      "statusCode": 500,
      "message": "Unexpected error occurred. Please contact support.",
      "data": null
    }