Skip to content

GET Tracking

Overview

Returns the Tracking, per Product.

HTTP Request

GET /v1/realpay/{merchant_number}/general/tracking/{product}

Path Parameters

  • merchant_number (string, required)
  • product (string, required)

Query Parameters

  • Version (string, required, default: v1)

Success Response (200)

Schema: TrackingGetResponse

Example

{
  "TrackingGetResponse": [
    {
      "Country": "South Africa",
      "Products": [
        {
          "Product": "ABSADC",
          "Tracking": [
            {
              "TrackingCode": "00",
              "TrackingDesc": "No Tracking"
            }
          ]
        }
      ]
    }
  ],
  "APIResponse": {
    "CallSequence": 7271,
    "Status": "SUCCESS",
    "Version": "1.0.0",
    "Name": "INTERNAL NAME OF CALL"
  }
}

Fields

  • TrackingGetResponse[].Country (string, maxLength 40)
  • Products[].Product (string, maxLength 10)
  • Tracking[].TrackingCode (string, maxLength 4)
  • Tracking[].TrackingDesc (string, maxLength 40)

Error Responses

  • 400 BadRequest
  • 401 Unauthorized
  • 404 NotFound
  • 500 InternalError
  • 503 ServiceUnavailable