ApiAccesses API

get listing

GET /api/rest/admin/api-accesses

Parameters

Name Description
filter[id] id filter

Request

Headers

Accept: application/vnd.api+json
Content-Type: application/vnd.api+json
Authorization: eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOjI1LCJhdWQiOlsiYWRtaW4iXSwiZXhwIjoxNzY3MzU4NTYwfQ.ZThk9YkZUCW5DTXrN9Nc09Y-m28feftY8i7aA8rOY4M
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-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: 912eee9a-d207-4d4a-b03c-d2ad006b4472
x-runtime: 0.007628
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"
  }
}