Skip to content

List AuthorizationsGET


Overview

List card authorizations. Filtering and sorting can be applied. Paging is available only when filtering by customer id or account id. 1

Endpoint URL

https://api-s.nolantechnologies.com/v0/banking/authorizations?customerId=${ customerId }&status=${ status }

Endpoint Data

Parameter Name Description Required
customerId Unit customer ID Yes
status Authorization status (Authorized only) Yes

Example Request

curl -i -X GET "https://api-s.nolantechnologies.com/v0/banking/authorizations?customerId=12345&status=Active" \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -H "X-Nolan-API-Key: YourNolanApiKey" 

Example Response

HTTP/1.1 200 OK
X-Powered-By: Express
Content-Type: application/json; charset=utf-8
Content-Length: 332
ETag: W/"14c-PIXt+3CWLR/8LXvJ5oHPfhWsbyg"
Date: Sat, 23 Sep 2023 20:51:38 GMT
Connection: keep-alive
Keep-Alive: timeout=5

{
    "data": [
        {
            "id": "90"
            , "status": "Authorized"
            , "amount": 2000
            , "description": "Europcar Mobility Group |**0019 "
            , "createdAt": "2023-01-16T07:40:44.970Z"
            , "cardLast4Digits": "7979"
            , "merchant": {
                "name": "Europcar Mobility Group"
                , "category": "EUROP CAR"
                , "location": "Cupertino, CA"
            }
        }
    ]
}

  1. Read more about this endpoint in the Unit API docs