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.
| Field | Data Type | Definition |
|---|---|---|
guid | String | The unique identifier for the tagging. Defined by MX. |
member_is_managed_by_user | Boolean | This indicates whether the member associated with the user is managed by the user. |
revision | Integer | The revision number of this tagging record. |
transaction_id | String | The unique identifier for the transaction the tag belongs to. Defined by the data provider. |
transaction_guid | String | The unique identifier for the transaction the tag belongs to. Defined by MX. |
tag_guid | String | The unique identifier for the tag. Defined by MX. |
tag_name | String | The name of the tag set by the user. |
updated_at | Integer | The date and time at which this tagging was last updated. |
user_guid | String | The unique identifier for the user the tagging is attached to. Defined by MX. |
user_id | String | The unique partner-defined identifier for the user. |
Example Payload
_22POST /admin/webhooks_22HTTP/1.1_22content-type: application/json; charset=utf-8_22accept: application/json_22User-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_22Host: 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.
| Field | Data Type | Definition |
|---|---|---|
guid | String | The unique identifier for the tag. Defined by MX. |
revision | Integer | The revision number of this tag record. |
name | String | The name of the tag set by the user. |
updated_at | Integer | The date/time this tag was last updated. |
user_guid | String | The unique identifier for the user the tag is attached to. Defined by MX. |
user_id | String | The unique partner-defined identifier for the user. |
Example Payload
_19POST /admin/webhooks_19HTTP/1.1_19content-type: application/json; charset=utf-8_19accept: application/json_19User-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_19Host: 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}