XPipe LogoXPipe Documentation

Get store info

Queries detailed information about a store.

POST
/store/info

Authorization

bearerAuth
AuthorizationBearer <token>

The bearer token used is the session token that you receive from the handshake exchange.

In: header

Request Body

application/json

stores*array<string>

The stores

Response Body

application/json

application/json

application/json

curl -X POST "http://localhost:21721/store/info" \  -H "Content-Type: application/json" \  -d '{    "stores": [      "f0ec68aa-63f5-405c-b178-9a4454556d6b"    ]  }'
{
  "infos": [
    {
      "store": "f0ec68aa-63f5-405c-b178-9a4454556d6b",
      "category": [
        "default"
      ],
      "name": [
        "local machine"
      ],
      "type": "local",
      "rawData": {},
      "usageCategory": "shell",
      "lastUsed": "2024-05-31T11:53:02.408504600Z",
      "lastModified": "2024-06-23T21:15:25.608097Z",
      "created": "2024-05-31T10:32:02.508504600Z",
      "state": {}
    }
  ]
}
{
  "message": "string"
}
Empty
Empty
{
  "error": {
    "cause": {},
    "stackTrace": [
      "string"
    ],
    "suppressed": [
      {}
    ],
    "localizedMessage": "string",
    "message": "string"
  }
}