# Get
# Get details of a specific authorization.
GET /v1/authorization/:id
Host: merchant.intergiro.com
Authorization: Bearer <private.api.key> or <customer.api.key>
Response will be a single Authorization
object.
# List all available authorizations.
GET /v1/monitor/authorization
Host: merchant.intergiro.com
Authorization: Bearer <private.api.key> or <agent.api.key>
Filter authorizations by date with query parameters start
and end
.
Example: ?start=2023-07-07&end=2023-07-08
In order to filter authorizations based on the authorization.number
, add query parameter keywords
with the value of the numbers you want to find, seperated by a comma.
Example: ?keywords=number1,number2
Response will be an array of Authorization
objects.