Authorization API
Environments

Avarda provides two environments, one for the testing, where partners can validate their integration and one for the production. The environments are completely separated and have their own authentication client credentials.

Test

https://stage.authorization-api.avarda.com/

Test Data

In our test environment, there is an option to run incoming requests in Mock Mode. In this mode, the response to a request is determined solely by the order total amount, with specific response types assigned to particular amounts. This feature simplifies integration testing by providing reliable and predictable results, allowing thorough testing of all major test cases and their alternative flows.

Mock Mode Responses

The responses corresponding to different order amounts are:

AmountHTTP Status - Response Type
200(202) Approved – ID validation required
700(422) Rejected – Credit not approved
1001(500) Failed – Service timeout
1002(500) Failed – Other internal service error
Any other amount(201) Approved – ID validation not required

Important Notes:

  • Although other request data do not impact the type of response, they must still pass validation, including checks for SSN format, phone number format, etc.
  • To execute a request in Mock Mode, the request must contain an item with its description set to MockForTest.

Example Request

The following request would run in Mock Mode and result in credit approved response with Customer ID validation required:

{
  "customer": {
    "identificationNumber": 193404016234,
    "userLanguageCode": 246,
    "phone": "0705485413",
    "email": "ove@abc.se"
  },
   "invoicingAddress": {
     "firstName": "Ove",
     "lastName": "Lindahl",
     "addressLine1": "Åsögatan 56",
     "city": "Stockholm",
     "zip": "11829"
   },
   "deliveryAddress": {
     "firstName": "Parvaneh",
     "lastName": "Kourosh",
     "addressLine1": "Åsögatan 58",
     "city": "Stockholm",
     "zip": "11830",
     "country": "Sweeden"
  },
  "items": [
    {
      "description": "MockForTest",
      "amount": 200,
      "taxAmount": 12
    },
  ],
  "useDifferentDeliveryAddress": true,
  "orderReference": "ST-3242-239",
  "posId": "A35",
  "idValidationCallbackUrl" : "http://beachware.com/api/id-validation",
  "accountClassCode": 1785
}

Production

https://authorization-api.avarda.com