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.eyJzdWIiOjI1LCJhdWQiOlsiYWRtaW4iXSwiZXhwIjoxNzcyMjExOTk5fQ.k8E0S_tRcrw4CdZtZDRCwqGt4JrClxk-NCXON6ZrN8E
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/"1738e467bf78631bf151f58d15cafa30"
cache-control: max-age=0, private, must-revalidate
x-request-id: 2f69fa1c-7eb4-484f-8863-86c37b820f5e
x-runtime: 0.007411
content-length: 652

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"
        ]
      }
    },
    {
      "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"
        ]
      }
    }
  ],
  "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"
  }
}