Skip to content

HostedFile

HostedFile

HostedFile = object

A hosted file.

Properties

id

id: string

The unique Caido ID of the project.

name

name: string

The name of the project.

path

path: string

The path of the file.


HostedFileSDK

HostedFileSDK = object

The SDK for the HostedFile service.

Methods

create()

create(spec: HostedFileSpec): Promise<HostedFile>

Create a hosted file.

Parameters
ParameterType
specHostedFileSpec
Returns

Promise<HostedFile>

Example
js
await sdk.hostedFile.create({ name: "My File", content: "Hello, world!" });
getAll()

getAll(): Promise<HostedFile[]>

Get all hosted files.

Returns

Promise<HostedFile[]>

Example
js
await sdk.hostedFile.getAll();

HostedFileSpec

HostedFileSpec = object

A specification for creating a hosted file.

Properties

content

content: Bytes

name

name: string