Skip to main content
POST
/
api
/
v1
/
room
/
attachment
/
link
Add link attachment to room
curl --request POST \
  --url https://api.noux.app/api/v1/room/attachment/link \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'authorization: <authorization>' \
  --data '
{
  "roomId": "<string>",
  "url": "<string>",
  "name": "<string>"
}
'
{
  "attachmentId": "<string>"
}

Authorizations

Authorization
string
header
required

Noux API key from your integration settings

Headers

authorization
string
required

Bearer token with Noux API key

Body

application/json
roomId
string
required

Room ID to add attachment to

url
string<uri>
required

URL of the link attachment

name
string
required

Title/name of the attachment

Minimum string length: 1

Response

Attachment added successfully

attachmentId
string
required

The created attachment ID