Skip to main content

Update link tags

Tags of brand short link can be updated via a PUT method to https://app.linksgpt.com/api/v1/links/{id}/tags, where {id} is the unique identifier (id) of the branded short link, If you don't know the link's id in advance, you can fetch it first with another API call. See List your links.

REQUEST EXAMPLE

cURL
curl 'https://app.linksgpt.com/api/v1/links/1678662715674986986/tags' \
-X PUT \
-H 'apikey: YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Accept-Language: en' \
-d \
'{
"tags": [
"tag1",
"tag2"
]
}'

PATH PARAMETERS

ParameterConstraintsDescription
idrequiredUnique identifier of the branded short link you want to update.

QUERY PARAMETERS

ParameterConstraintsDescription
workspaceoptionalYour workspace id, if you do not specify the workspace context, the default workspace (your main workspace) will be used. If apikey is used as the authentication mode, you do not need to set this parameter.

REQUEST BODY

Content-Type: application/json

Payload Example

JSON
{
"tags": [
"tag1",
"tag2"
]
}
PropertyTypeConstraintsDescription
tagsarray of stringsrequiredUnique identifier of the Tag resource. If not specified, will not be updated. e.g.
["tag1", "tag2"]

RESPONSE EXAMPLE

JSON
{
"code": 0,
"message": "success",
"data": null
}

See more HTTP Responses

RESPONSE DATA

The update link tags request has no actual data returned.