Links

Links are obscured, secure URLs to Onehub folders and files. They are created via unique tokens and are designed to provide shortcuts to Onehub content without requiring an account. You can read and update links.

GET https://ws-api.onehub.com/:item/:item_id/link

Retrieves the link object from an :item (folder or file) specified via :item_id.

Path Parameters

NameTypeDescription

:item

integer

The type of item. Can either be folders or files.

:item_id

integer

The unique identifier of the item you would like to retrieve the link from.

{
  "content_item_link": {
    "token": "3mxsktkk",
    "token_accessible": false,
    "token_expires": false,
    "token_expires_at": null,
    "require_password": false,
    "role_id": null,
    "link": "/files/3mxsktkk",
    "url": "/files/849607/link"
  }
}

PUT https://ws-api.onehub.com/:item/:item_id/link

Updates the link object on the :item (folder or file) specified via :item_id.

Path Parameters

NameTypeDescription

:item

integer

The type of item. Can either be folders or files.

:item_id

integer

The unique identifier of the item you would like to update the link on.

Request Body

NameTypeDescription

require_password

boolean

Should a password be required to access the link? Defaults to false.

password

string

Set the required password that must be entered before the link can be accessed. Required if require_password is true.

token_accessible

boolean

Is the link enabled? Defaults to false.

{
  "content_item_link": {
    "token": "3mxsktkk",
    "token_accessible": true,
    "token_expires": false,
    "token_expires_at": null,
    "require_password": true,
    "role_id": null,
    "link": "/files/3mxsktkk",
    "url": "/files/849607/link"
  }
}

Last updated