ApiAccesses API

get listing

GET /api/rest/admin/api-accesses

Parameters

Name Description
filter[id] id filter

Request

Headers

Version: HTTP/1.0
Accept: application/vnd.api+json
Content-Type: application/vnd.api+json
Authorization: eyJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3MjEyMzYzMDYsInN1YiI6MjB9.3RHXeWlnFJ8Wa33gFRIzyAmhvbDXlFUKn4DrFJxCp2c
Host: example.org
Cookie: 

Route

GET /api/rest/admin/api-accesses

Response

Headers

X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 0
X-Content-Type-Options: nosniff
X-Download-Options: noopen
X-Permitted-Cross-Domain-Policies: none
Referrer-Policy: strict-origin-when-cross-origin
Content-Type: application/vnd.api+json
Vary: Accept
ETag: W/"f0e55095ad9c9ff29d95cdba125eb9a7"
Cache-Control: max-age=0, private, must-revalidate
X-Request-Id: fb00ac3e-5bf7-4b53-8d89-b2a28c7ab144
X-Runtime: 0.009034
Content-Length: 714

Status

200 OK

Body

{
  "data": [
    {
      "id": "1",
      "type": "api-accesses",
      "links": {
        "self": "http://example.org/api/rest/admin/api-accesses/1"
      },
      "attributes": {
        "customer-id": 7,
        "login": "api_access-1",
        "account-ids": [

        ],
        "allowed-ips": [
          "0.0.0.0",
          "127.0.0.1"
        ],
        "allow-listen-recording": false
      }
    },
    {
      "id": "2",
      "type": "api-accesses",
      "links": {
        "self": "http://example.org/api/rest/admin/api-accesses/2"
      },
      "attributes": {
        "customer-id": 8,
        "login": "api_access-2",
        "account-ids": [

        ],
        "allowed-ips": [
          "0.0.0.0",
          "127.0.0.1"
        ],
        "allow-listen-recording": false
      }
    }
  ],
  "meta": {
    "total-count": 2
  },
  "links": {
    "first": "http://example.org/api/rest/admin/api-accesses?page%5Bnumber%5D=1&page%5Bsize%5D=50",
    "last": "http://example.org/api/rest/admin/api-accesses?page%5Bnumber%5D=1&page%5Bsize%5D=50"
  }
}