PUT
/
api
/
links
/
{id}
curl --request PUT \
  --url https://api.creatify.ai/api/links/{id}/ \
  --header 'Content-Type: application/json' \
  --header 'X-API-ID: <api-key>' \
  --header 'X-API-KEY: <api-key>' \
  --data '{
  "url": "<string>",
  "title": "<string>",
  "description": "<string>",
  "image_urls": [],
  "video_urls": [],
  "reviews": "<any>",
  "logo_url": "<string>"
}'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "url": "<string>",
  "title": "<string>",
  "description": "<string>",
  "image_urls": [],
  "video_urls": [],
  "reviews": "<any>",
  "logo_url": "<string>",
  "ai_summary": "<string>",
  "ai_target_audiences": "<any>"
}

Authorizations

X-API-ID
string
header
required

API ID, from your settings page.

X-API-KEY
string
header
required

API Key, from your settings page.

Path Parameters

id
string
required

A UUID string identifying this link.

Body

url
string | null
Maximum length: 1000
title
string | null
Maximum length: 1000
description
string | null
image_urls
string[]
video_urls
string[]
reviews
any | null
logo_url
string | null
Maximum length: 1000

Response

200 - application/json
id
string
required
ai_summary
string | null
required
ai_target_audiences
any | null
required
url
string | null
Maximum length: 1000
title
string | null
Maximum length: 1000
description
string | null
image_urls
string[]
video_urls
string[]
reviews
any | null
logo_url
string | null
Maximum length: 1000