Skip to main content
POST
/
public
/
link-preview
/
save
public Saves a link preview for the specified url under a specific ism or concat.
curl --request POST \
  --url https://api.example.com/public/link-preview/save \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "actualURL": "https://www.google.com",
  "situationTypeID": 1,
  "mediaType": 3,
  "publicSessionToken": "<string>",
  "entityCode": "637F8E73-5169-4D74-BF08-3F0BA481D74F",
  "entityID": 123,
  "entityTypeID": 123,
  "isReusableByOthers": true
}
'
{
  "success": true,
  "data": "<unknown>"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json
actualURL
string
default:https://www.google.com
required
Minimum string length: 1
situationTypeID
integer<int32>
default:1
required
mediaType
integer<int32>
default:3
required
publicSessionToken
string | null
entityCode
string<uuid> | null
default:637F8E73-5169-4D74-BF08-3F0BA481D74F
entityID
integer<int32> | null
entityTypeID
integer<int32>
isReusableByOthers
boolean

Response

Success

success
boolean
data
unknown