Skip to content
  • There are no suggestions because the search field is empty.

RabbitMQ Events: Changes to Accounts

The article below will detail what can be seen in the account-related events in your Content Catalyst RabbitMQ feed.

The following events are available: 

 Account added

account.changes.added 

Message Body

{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"accountName": {
"type": "string",
"description": "The unique name of the added account"
}
}
}

Account updated

account.changes.updated 

Message Body

{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"accountName": {
"type": "string",
"description": "The unique name of the updated account"
}
}
}

Account removed

account.changes.removed 

Message Body

{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"accountName": {
"type": "string",
"description": "The unique name of the removed account"
}
}
}

Account category licenses removed

account.changes.categoryLicensesRemoved 

Message Body

{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"accountName": {
"type": "string",
"description": "The unique name of the account which has had category licenses removed"
}
}
}

Account product licenses removed

account.changes.productLicensesRemoved 

Message Body

{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"accountName": {
"type": "string",
"description": "The unique name of the account which has had product licenses removed"
}
}
}