Get Folders

Get vault folder data

GEThttps://api.korewireless.com/vault/subscriptions/{subscriptionid}/folders
Path parameters
subscriptionid*string

Subscription ID

Response

OK

Body
detailsarray of Folder (object)
Request
const response = await fetch('https://api.korewireless.com/vault/subscriptions/{subscriptionid}/folders', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "details": [
    {
      "fileSize": 0,
      "updatedon": "text",
      "registryid": "text"
    }
  ]
}

Authorization: apiKey

name: x-api-key
in: header
type: apiKey
curl -L -X GET 'https://api.korewireless.com/vault/subscriptions/:subscriptionid/folders' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
-H 'x-api-key: <API_KEY_VALUE>'

Last updated