Skip to main content

Tags & Taggings

Taggings

Taggings webhooks notify you when a tagging is created, updated, or deleted in the MX system for any user on your client.

FieldData TypeDefinition
guidStringThe unique identifier for the tagging. Defined by MX.
member_is_managed_by_userBooleanThis indicates whether the member associated with the user is managed by the user.
revisionIntegerThe revision number of this tagging record.
transaction_idStringThe unique identifier for the transaction the tag belongs to. Defined by the data provider.
transaction_guidStringThe unique identifier for the transaction the tag belongs to. Defined by MX.
tag_guidStringThe unique identifier for the tag. Defined by MX.
tag_nameStringThe name of the tag set by the user.
updated_atIntegerThe date and time at which this tagging was last updated.
user_guidStringThe unique identifier for the user the tagging is attached to. Defined by MX.
user_idStringThe unique partner-defined identifier for the user.

Example Payload


_22
POST /admin/webhooks
_22
HTTP/1.1
_22
content-type: application/json; charset=utf-8
_22
accept: application/json
_22
User-Agent: HTTPClient/1.0 (2.7.1, ruby 2.2.2
_22
(2015-09-02)) Date: Thu, 14 Apr 2016 04:26:04 GMT Content-Length: 231
_22
Host: abc.com
_22
{
_22
"action": "created",
_22
"tagging": {
_22
"guid": "TGN-03ffc670-2a6d-4c1d-9172-8413fd18a2ec",
_22
"member_is_managed_by_user": true,
_22
"revision": 1,
_22
"transaction_id": "T-1234567",
_22
"transaction_guid": "TRN-72b36023-d25d-7f1e-8013-654bf0d3de44",
_22
"tag_guid": "TAG-001",
_22
"tag_name": "Tax Receipts",
_22
"updated_at": 1490737101,
_22
"user_guid": "USR-29beed70-9a48-5c1d-9172-7413eb68a3ef",
_22
"user_id": "U-1234567",
_22
}
_22
}

Tags

Tag webhooks notify you when a tag is created, updated, or deleted in the MX system for any user on that partner's client.

FieldData TypeDefinition
guidStringThe unique identifier for the tag. Defined by MX.
revisionIntegerThe revision number of this tag record.
nameStringThe name of the tag set by the user.
updated_atIntegerThe date/time this tag was last updated.
user_guidStringThe unique identifier for the user the tag is attached to. Defined by MX.
user_idStringThe unique partner-defined identifier for the user.

Example Payload


_19
POST /admin/webhooks
_19
HTTP/1.1
_19
content-type: application/json; charset=utf-8
_19
accept: application/json
_19
User-Agent: HTTPClient/1.0 (2.7.1, ruby 2.2.2
_19
(2015-09-02)) Date: Thu, 14 Apr 2016 04:26:04 GMT Content-Length: 231
_19
Host: abc.com
_19
_19
{
_19
"action": "created",
_19
"tag": {
_19
"guid": "TAG-03ffc670-2a6d-4c1d-9172-8413fd18a2ec",
_19
"revision": 1,
_19
"name": "Tax Receipts",
_19
"updated_at": 1490737101,
_19
"user_guid": "USR-29beed70-9a48-5c1d-9172-7413eb68a3ef",
_19
"user_id": "U-1234567"
_19
}
_19
}

On this page