Viewing the contents of a resource file

POST /api/v1/resources/toc

Access: administrator, analyst, and operator.

Request body

Format: JSON

Name

Data type

Mandatory

Description

Value example

fileID

string

Yes

The file ID obtained as a result of loading the resource file.

00000000-0000-0000-0000-000000000000

password

string

Yes

Resource file password.

SomePassword!88

Response

HTTP code: 200

Format: JSON

File version, list of resources, categories, and folders.

The ID of the retrieved resources must be used when importing.

type Package struct {

    Version         string                        `json:"version"`

    AssetCategories []*categories.Category        `json:"assetCategories"`

    Folders         []*folders.Folder             `json:"folders"`

    Resources       []*resources.ExportedResource `json:"resources"`

}

Page top