Main menu

Tag an asset

POST https://localise.biz/api/assets/{id}/tags 

Tags an asset with a new or existing term. If the tag doesn't exist it will be created.

URI parameters

id

Asset ID

string required
key

API key - required if not sent in Authorization header

string optional

POST parameters

name

Name of new or existing tag

string required

Request headers

Authorization

API key sent as "Loco <key>" or "Basic <encoded>". See Authentication.

string required if not in query

Response

A single JSON-encoded Asset object, which takes the following form:

{
    "id": "", // Unique asset identifier
    "type": "text", // Content type for translations
    "context": "", // Optional context descriptor
    "notes": "", // Optional notes for translators
    "printf": "", // String formatting style
    "modified": "", // Time last modified in UTC
    "plurals": 0, // Number of associated plural forms
    "tags": [ /* Array of terms asset is tagged with */ ],
    "aliases": { /* Hash of additional asset identifiers, e.g */ },
    "progress": {
        "translated": 0, // Number of locales for which a translation exists (including those flagged)
        "untranslated": 0, // Number of locales that do not yet have a translation of this asset
        "flagged": 0, // Number of locales whose translations are flagged as requiring attention
    }
}  

Try it

Open in test console »


« /api/assets