v1
latestOpenAPI 3.0.02026-07-2482421001.1 KBTag Management
Override transaction tag
This API allows you to manually override the tags applied to a transaction within a specific Book. You can assign one or more tag UUIDs to a transaction using its primary key (txn_pk).
put/v2/analytics/book/{book_uuid}/transactions
Path parameters
book_uuidstring uuid required
Example:16e6d579-4699-43e2-a419-8a29bcb5t678
The unique identifier of the Book in which the transaction has to be overridden.
Request body
Example request
{
"txns": [
{
"txn_pk": 2234917046,
"tags": [
{
"tag_uuid": "db6be451-95c1-48f4-bf15-9c9c14c1a8ab",
"apply_to_txn": true
}
]
}
]
}Response
Tag Override Successful
{"stackTrail":"paths:/v2/analytics/book/{book_uuid}/transactions:put:responses:204:content:application/json:schema","oasType":"schema","type":"unknown","title":"Tag Override Successful"}