Session refresh methods API

get listing

GET /api/rest/admin/session-refresh-methods

Parameters

Name Description
filter[id] id filter
filter[name] name filter
filter[name-eq] name eq filter
filter[name-not-eq] name not eq filter
filter[name-cont] name cont filter
filter[name-start] name start filter
filter[name-end] name end filter
filter[name-in] name in filter
filter[name-not-in] name not in filter
filter[name-cont-any] name cont any filter

Request

Headers

Version: HTTP/1.0
Accept: application/vnd.api+json
Content-Type: application/vnd.api+json
Authorization: eyJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3MTAyNTQ3MzcsInN1YiI6MTkxfQ.7o8XyvCnJnYe13AiiRPK8Y8vQTLGvM6t1XpfGssycmc
Host: example.org
Cookie: 

Route

GET /api/rest/admin/session-refresh-methods

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/"a09b29d60b11ba33a9dd6a7082e966f3"
Cache-Control: max-age=0, private, must-revalidate
X-Request-Id: 4b06c761-5957-4638-893e-47751a850ab8
X-Runtime: 0.007936
Content-Length: 825

Status

200 OK

Body

{
  "data": [
    {
      "id": "1",
      "type": "session-refresh-methods",
      "links": {
        "self": "http://example.org/api/rest/admin/session-refresh-methods/1"
      },
      "attributes": {
        "name": "Invite",
        "value": "INVITE"
      }
    },
    {
      "id": "2",
      "type": "session-refresh-methods",
      "links": {
        "self": "http://example.org/api/rest/admin/session-refresh-methods/2"
      },
      "attributes": {
        "name": "Update request",
        "value": "UPDATE"
      }
    },
    {
      "id": "3",
      "type": "session-refresh-methods",
      "links": {
        "self": "http://example.org/api/rest/admin/session-refresh-methods/3"
      },
      "attributes": {
        "name": "Update request and invite if unsupported",
        "value": "UPDATE_FALLBACK_INVITE"
      }
    }
  ],
  "meta": {
    "total-count": 3
  },
  "links": {
    "first": "http://example.org/api/rest/admin/session-refresh-methods?page%5Bnumber%5D=1&page%5Bsize%5D=50",
    "last": "http://example.org/api/rest/admin/session-refresh-methods?page%5Bnumber%5D=1&page%5Bsize%5D=50"
  }
}