Axway · Schema

platform.user.remove

Published when a user is deleted from Platform.

API ManagementEnterpriseIntegrationSecurity

Properties

Name Type Description
orgs array Array of orgs the user was a member of
View JSON Schema on GitHub

JSON Schema

amplify-platform-platform.user.remove-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.com/schemas/axway/amplify-platform-platform.user.remove-schema.json",
  "title": "platform.user.remove",
  "description": "Published when a user is deleted from Platform.",
  "type": "object",
  "properties": {
    "orgs": {
      "type": "array",
      "description": "Array of orgs the user was a member of",
      "items": {
        "type": "object",
        "properties": {
          "guid": {
            "$ref": "#/components/schemas/Org/properties/guid"
          },
          "name": {
            "$ref": "#/components/schemas/Org/properties/name"
          },
          "org_id": {
            "$ref": "#/components/schemas/Org/properties/org_id"
          }
        }
      },
      "example": [
        {
          "guid": {},
          "name": {},
          "org_id": {}
        }
      ]
    }
  }
}