GET
/
access_requests
List all access requests
curl --request GET \
  --url http://localhost:3001/portal-api/access_requests \
  --header 'Authorization: <api-key>'
[
  {
    "Catalogue": "Public Catalogue",
    "Client": "Payment application",
    "CreatedAt": "2023-06-25 13:37",
    "UpdatedAt": "2023-06-25 13:37",
    "DeletedAt": "2023-06-25 13:37",
    "Plan": "Free plan",
    "User": "User#1",
    "AuthType": "authToken",
    "DCREnabled": false,
    "ID": 1,
    "ProvisionImmediately": true,
    "Status": "approved",
    "Products": "Payment API"
  }
]

Authorizations

Authorization
string
header
required

Response

200 - application/json

OK

Products
string

Names of products included in this access request

Example:

"Payment API"

Catalogue
string

Catalogue of API Products included in this access request

Example:

"Public Catalogue"

Client
string

Name of the developer app

Example:

"Payment application"

CreatedAt
string

Timestamp of when this access request was created

Example:

"2023-06-25 13:37"

UpdatedAt
string

Timestamp of when this access request was updated the last time

Example:

"2023-06-25 13:37"

DeletedAt
string

Timestamp of when this access request was removed

Example:

"2023-06-25 13:37"

Plan
string

Name of a plan included in this access request

Example:

"Free plan"

User
string

Descriptor of a user to whom this access request belongs

Example:

"User#1"

AuthType
string

Authentication type of APIs that are included in this API Product

Example:

"authToken"

DCREnabled
boolean

Identifies if this access request was created using Dynamic client registration

Example:

false

ID
integer

UID of access request

Example:

1

ProvisionImmediately
boolean

Identifies if this access request was approved automatically

Example:

true

Status
enum<string>

Approval status of this access request

Available options:
approved,
rejected,
pending