Attachments

Contents

Attachments

They allow the user to manage the attachments they want to store on the servers.

Show Attachment

GET /v3/blueprint/attachments/:id

It shows information about a specific attachment.

Inputs

None

Returns

Field Type Description
id String Identifier of the attachment.
name String Name of the attachment.
is_mock Boolean Indicates whether the attachment is mock or not.
download_url String URL where the user can download the attachment contents

Back to top

Attachment Uploaded

PUT /v3/blueprint/attachments/:id/uploaded

It indicates to the system that the attachment was uploaded successfully by the user to the URL provided by the system

Inputs

None

Returns

Field Type Description
id String Identifier of the attachment.
name String Name of the attachment.
is_mock Boolean Indicates whether the attachment is mock or not.

Back to top

Destroy Attachment

DELETE /v3/blueprint/attachments/:id

It deletes an attachment.

Inputs

None

Returns

None

Back to top