GET
/
v1
/
local-storage
curl --request GET \
  --url https://api.reworkd.dev/v1/local-storage \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 123,
    "organization_id": 123,
    "group_id": 0,
    "domain": "<string>",
    "path": "/",
    "key": "<string>",
    "value": "<string>",
    "expires": "2023-11-07T05:31:56Z",
    "create_date": "2023-11-07T05:31:56Z",
    "update_date": "2023-11-07T05:31:56Z"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

domain
string
required

Response

200
application/json

Successful Response

The response is of type LocalStorage ยท object[].