MaintainX Subscriptions & Webhooks API

Webhooks in MaintainX What are Webhooks? Webhooks are HTTP callbacks that allow different systems to communicate with each other in real-time. They're like automated messengers that deliver information when something happens, rather than requiring you to ask for it. In the context of MaintainX, webhooks are a way for our system to automatically notify your application when specific events occur in your account. Instead of your application repeatedly checking our API for updates (a process known as "polling"), webhooks allow you to receive real-time notifications about important events like: Work order status changes New work orders being created Asset updates And more... When an event occurs, MaintainX sends an HTTP POST request to the endpoint you specify. The request contains details about the event. It allows your application to react immediately to changes in MaintainX. Set Up Webhooks You can configure webhooks the following ways: From the MaintainX Web Application For a quick setup, you can configure webhooks in the MaintainX web application: From the sidebar, select Settings > Integrations. Then, on the Integrations page, select Webhooks Click + New Webhook Configure a webhook endpoint and select the events you want to receive Save the configuration Via the REST API You can configure webhooks using our REST API if you want to integrate with MaintainX in a programmatic way. The API allows you to: Create new webhook subscriptions. Update webhook configurations. Delete webhook subscriptions. Retrieve webhook secrets. ⚠️ Warning Webhooks that don't get a successful response from your application over long periods of time might be deleted. A webhook call will timeout after 10 seconds. When a webhook is deleted, we send an email to the address linked to the user account that made the request. Security and Verification To verify that webhook requests come from MaintainX and haven't been tampered with, we include security signatures in each webhook request. This section explains how to verify these signatures. Verify Webhook Signatures All webhook HTTP requests sent by MaintainX include two headers containing a timestamp and an HMAC signature that must be validated by your application: x-maintainx-webhook-body-signature x-maintainx-webhook-uri-signature ℹ️ Note When creating a webhook, you'll receive a secret that should be securely stored on your end. This secret is essential for signature verification and can also be accessed later through the MaintainX interface if needed. The timestamp is prefixed by t=. Each signature is prefixed by a scheme version. Scheme versions start with v, followed by an integer. The only valid live signature version is v1. x-maintainx-webhook-body-signature: t=<timestamp>,v1=<signature> Signature Verification Process MaintainX generates signatures using a hash-based message authentication code (HMAC) with SHA-256. Here are the steps to verify a webhook signature: Extract the timestamp and signatures from the header Split the header, using the , character as the separator, to get a list of elements. Split each element, using the = character as the separator, to get a prefix and value pair. The value for the prefix t corresponds to the timestamp, and v1 corresponds to the signature. You can discard all other elements. To prepare the signed payload string, concatenate the following: The timestamp (as a string) The character . The actual JSON payload (that is, the request body, or the full URI) <timestamp>.<stringified payload> Determine the expected signature Retrieve the secret for your endpoint. Visit [https://app.getmaintainx.com/settings/integrations](https://app.getmaintainx.com/settings/integrations), find the endpoint you want, and select Copy secret. Compute an HMAC with the SHA256 hash function. Use the endpoint's signing secret as the key. Use the signed_payload string as the message. crypto.createHmac("sha256", secret).update('<timestamp>.<stringified payload>', "utf8").digest("hex") Compare the signatures Compare the signature in the header to the expected signature. For an equality match, compute the difference between the current timestamp and the received timestamp. Decide whether the difference is within your tolerance. We recommend a tolerance of 5 minutes to allow for clock drift and processing delays. Webhooks with timestamps older than your tolerance window should be rejected to prevent replay attacks. Best Practices Always verify webhook signatures to ensure requests are genuine (see Security and Verification section above). Return a 2xx status code as quickly as possible to acknowledge receipt (our webhooks will timeout after 10 seconds). Process webhook events asynchronously after acknowledging receipt. Implement proper error handling for failed webhook deliveries. Implement retry logic in your application to handle temporary failures. Implement idempotency in your webhook handler to prevent duplicate processing of the same event. Set up monitoring for your webhook endpoint to detect failures. Consider using a webhook testing tool during development to simulate events. Limitations Webhook URLs are currently limited to a maximum of 512 characters Need Help? If you need help implementing webhooks or troubleshooting, contact our Support team from the MaintainX web application. From the sidebar, select Support, then select Contact Support.

Operations 5

POST /subscriptions Create new subscription
GET /subscriptions/{id} Get subscription
PATCH /subscriptions/{id} Update subscription
DELETE /subscriptions/{id} Remove subscription
GET /subscriptions/{id}/secret Get secret information

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/maintainx-subscriptions-webhooks-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

maintainx-subscriptions-webhooks-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Maintainx Subscriptions & Webhooks API
  version: '1'
  contact:
    url: https://www.getmaintainx.com/
    name: Support
    email: support@getmaintainx.com
  x-logo:
    url: https://maintainx-static.s3-us-west-2.amazonaws.com/img/default-org-logo.png
    backgroundColor: '#FFFFFF'
    altText: MaintainX logo
  description: 'Operations tagged Subscriptions & Webhooks across 29 of this provider''s published API definitions: maintainx-asset-criticalities-api-openapi.yml, maintainx-asset-custom-statuses-api-openapi.yml, maintainx-asset-statuses-api-openapi.yml, maintainx-assets-api-openapi.yml, maintainx-categories-api-openapi.yml, maintainx-conversations-api-openapi.yml, maintainx-custom-fields-api-openapi.yml, maintainx-locations-api-openapi.yml, maintainx-maintenance-plans-api-openapi.yml, maintainx-manufacturers-api-openapi.yml, maintainx-meter-readings-api-openapi.yml, maintainx-meter-triggers-api-openapi.yml, maintainx-meters-api-openapi.yml, maintainx-openapi-documentation-api-openapi.yml, maintainx-organizations-api-openapi.yml, maintainx-part-transfer-requests-api-openapi.yml, maintainx-parts-api-openapi.yml, maintainx-procedure-template-rows-api-openapi.yml, maintainx-procedure-templates-api-openapi.yml, maintainx-purchase-orders-api-openapi.yml, maintainx-root-cause-analysis-reports-api-openapi.yml, maintainx-subscriptions-webhooks-api-openapi.yml, maintainx-teams-api-openapi.yml, maintainx-users-api-openapi.yml, maintainx-vendors-api-openapi.yml, maintainx-work-orders-api-openapi.yml, maintainx-work-permits-api-openapi.yml, maintainx-work-request-portals-api-openapi.yml, maintainx-work-requests-api-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.getmaintainx.com/v1
  description: Endpoint
security:
- Bearer: []
tags:
- name: Subscriptions & Webhooks
paths:
  /subscriptions:
    post:
      summary: Create new subscription
      requestBody:
        description: Subscription to create
        required: true
        content:
          application/json:
            schema:
              type: object
              oneOf:
              - title: API Token Created
                type: object
                required:
                - type
                - url
                properties:
                  type:
                    type: string
                    description: Type of event subscribed to
                    enum:
                    - API_TOKEN_CREATED
                    example: API_TOKEN_CREATED
                  url:
                    type: string
                    example: https://example.com
              - title: API Token Revoked
                type: object
                required:
                - type
                - url
                properties:
                  type:
                    type: string
                    description: Type of event subscribed to
                    enum:
                    - API_TOKEN_REVOKED
                    example: API_TOKEN_REVOKED
                  url:
                    type: string
                    example: https://example.com
              - title: Asset Status Change
                type: object
                required:
                - type
                - url
                properties:
                  type:
                    type: string
                    description: Type of event subscribed to
                    enum:
                    - ASSET_STATUS_CHANGE
                    example: ASSET_STATUS_CHANGE
                  url:
                    type: string
                    example: https://example.com
                  filters:
                    type: object
                    description: Possible filters.
                    properties:
                      oneOfAssetStatusTypes:
                        type: array
                        description: Asset status types that will trigger the webhook
                        items:
                          title: Status
                          type: string
                          enum:
                          - IGNORE
                          - OFFLINE
                          - ONLINE
                      oneOfCustomAssetStatusesIds:
                        type: array
                        description: Custom status ids that will trigger the webhook
                        items:
                          type: number
              - title: Connector Token Revoked
                type: object
                required:
                - type
                - url
                properties:
                  type:
                    type: string
                    description: Type of event subscribed to
                    enum:
                    - CONNECTOR_TOKEN_REVOKED
                    example: CONNECTOR_TOKEN_REVOKED
                  url:
                    type: string
                    example: https://example.com
              - title: Data Export Initiated
                type: object
                required:
                - type
                - url
                properties:
                  type:
                    type: string
                    description: Type of event subscribed to
                    enum:
                    - DATA_EXPORT_INITIATED
                    example: DATA_EXPORT_INITIATED
                  url:
                    type: string
                    example: https://example.com
              - title: Invite Link Archived
                type: object
                required:
                - type
                - url
                properties:
                  type:
                    type: string
                    description: Type of event subscribed to
                    enum:
                    - INVITE_LINK_ARCHIVED
                    example: INVITE_LINK_ARCHIVED
                  url:
                    type: string
                    example: https://example.com
              - title: Invite Link Created
                type: object
                required:
                - type
                - url
                properties:
                  type:
                    type: string
                    description: Type of event subscribed to
                    enum:
                    - INVITE_LINK_CREATED
                    example: INVITE_LINK_CREATED
                  url:
                    type: string
                    example: https://example.com
              - title: Invite Link Updated
                type: object
                required:
                - type
                - url
                properties:
                  type:
                    type: string
                    description: Type of event subscribed to
                    enum:
                    - INVITE_LINK_UPDATED
                    example: INVITE_LINK_UPDATED
                  url:
                    type: string
                    example: https://example.com
              - title: Meter Trigger Status Change
                type: object
                required:
                - type
                - url
                properties:
                  type:
                    type: string
                    description: Type of event subscribed to
                    enum:
                    - METER_TRIGGER_STATE_CHANGE
                    example: METER_TRIGGER_STATE_CHANGE
                  url:
                    type: string
                    example: https://example.com
                  filters:
                    type: object
                    description: Possible filters.
                    properties:
                      oneOfStates:
                        type: array
                        description: States that will trigger the webhook.
                        items:
                          title: State
                          type: string
                          enum:
                          - INACTIVE
                          - INSUFFICIENT_DATA
                          - PENDING
                          - STABLE
                          - TRIGGERED
              - title: New Asset
                type: object
                required:
                - type
                - url
                properties:
                  type:
                    type: string
                    description: Type of event subscribed to
                    enum:
                    - NEW_ASSET
                    example: NEW_ASSET
                  url:
                    type: string
                    example: https://example.com
                  options:
                    type: object
                    description: Possible options
                    properties:
                      serializeEntity:
                        type: boolean
                        description: If true, the webhook will receive the Asset data
              - title: New Category on Work Order
                type: object
                required:
                - type
                - url
                properties:
                  type:
                    type: string
                    description: Type of event subscribed to
                    enum:
                    - NEW_CATEGORY_ON_WORK_ORDER
                    example: NEW_CATEGORY_ON_WORK_ORDER
                  url:
                    type: string
                    example: https://example.com
                  filters:
                    type: object
                    description: Possible filters.
                    properties:
                      oneOfCategories:
                        type: array
                        description: At least one of those categories should be on the work order to trigger the webhook.
                        items:
                          oneOf:
                          - title: Name
                            type: string
                            description: Category name
                          - title: ID
                            type: integer
                            description: Global ID of a category
              - title: New Comment on Work Order
                type: object
                required:
                - type
                - url
                properties:
                  type:
                    type: string
                    description: Type of event subscribed to
                    enum:
                    - NEW_COMMENT_ON_WORK_ORDER
                    example: NEW_COMMENT_ON_WORK_ORDER
                  url:
                    type: string
                    example: https://example.com
              - title: New Location
                type: object
                required:
                - type
                - url
                properties:
                  type:
                    type: string
                    description: Type of event subscribed to
                    enum:
                    - NEW_LOCATION
                    example: NEW_LOCATION
                  url:
                    type: string
                    example: https://example.com
              - title: New Part
                type: object
                required:
                - type
                - url
                properties:
                  type:
                    type: string
                    description: Type of event subscribed to
                    enum:
                    - NEW_PART
                    example: NEW_PART
                  url:
                    type: string
                    example: https://example.com
                  options:
                    type: object
                    description: Possible options
                    properties:
                      serializeEntity:
                        type: boolean
                        description: If true, the webhook will receive the Part data
              - title: New Purchase Order
                type: object
                required:
                - type
                - url
                properties:
                  type:
                    type: string
                    description: Type of event subscribed to
                    enum:
                    - NEW_PURCHASE_ORDER
                    example: NEW_PURCHASE_ORDER
                  url:
                    type: string
                    example: https://example.com
                  options:
                    type: object
                    description: Possible options
                    properties:
                      serializeEntity:
                        type: boolean
                        description: If true, the webhook will receive the Purchase Order data
                      includeOAuthTokensInPayload:
                        type: boolean
                        description: 'If true, the webhook payload will include the OAuth tokens of the user whose action triggered the webhook. Warning: these tokens are sensitive and should only be included when the webhook is sent to a trusted source. Only available when OIDC login is enabled for the organization.'
              - title: New Request
                type: object
                required:
                - type
                - url
                properties:
                  type:
                    type: string
                    description: Type of event subscribed to
                    enum:
                    - NEW_WORK_REQUEST
                    example: NEW_WORK_REQUEST
                  url:
                    type: string
                    example: https://example.com
              - title: New Slash Command
                type: object
                required:
                - type
                - url
                properties:
                  type:
                    type: string
                    description: Type of event subscribed to
                    enum:
                    - NEW_SLASH_COMMAND
                    example: NEW_SLASH_COMMAND
                  url:
                    type: string
                    example: https://example.com
                  filters:
                    type: object
                    description: Possible filters.
                    properties:
                      command:
                        type: string
                        description: Specify the required keyword to trigger the Webhook.
                        example: jira
              - title: New Vendor
                type: object
                required:
                - type
                - url
                properties:
                  type:
                    type: string
                    description: Type of event subscribed to
                    enum:
                    - NEW_VENDOR
                    example: NEW_VENDOR
                  url:
                    type: string
                    example: https://example.com
              - title: New Work Order
                type: object
                required:
                - type
                - url
                properties:
                  type:
                    type: string
                    description: Type of event subscribed to
                    enum:
                    - NEW_WORK_ORDER
                    example: NEW_WORK_ORDER
                  url:
                    type: string
                    example: https://example.com
                  options:
                    type: object
                    description: Possible options
                    properties:
                      serializeEntity:
                        type: boolean
                        description: If true, the webhook will receive the Work Order data
              - title: Part Change
                type: object
                required:
                - type
                - url
                properties:
                  type:
                    type: string
                    description: Type of event subscribed to
                    enum:
                    - PART_CHANGE
                    example: PART_CHANGE
                  url:
                    type: string
                    example: https://example.com
                  options:
                    type: object
                    description: Possible options
                    properties:
                      serializeEntity:
                        type: boolean
                        description: If true, the webhook will receive the part data
                      onlySerializeFilteredProperties:
                        type: boolean
                        description: If true and serializeEntity is also set to true, only the filtered properties will be returned on update.
                  filters:
                    type: object
                    description: Possible filters.
                    properties:
                      oneOfPartProperties:
                        type: array
                        description: Properties that will trigger the webhook. <br>*If no properties are selected, the webhook will be triggered on every change
                        items:
                          title: Properties
                          type: string
                          enum:
                          - AREA
                          - ASSETS
                          - AVAILABLE_QUANTITY
                          - BARCODE
                          - DESCRIPTION
                          - EXTRA_FIELDS
                          - LOCATION
                          - LOCATIONS
                          - MAXIMUM_QUANTITY
                          - MINIMUM_QUANTITY
                          - NAME
                          - PART_TYPES
                          - TEAMS
                          - UNIT_COST
                          - VENDORS
              - title: Part Delete
                type: object
                required:
                - type
                - url
                properties:
                  type:
                    type: string
                    description: Type of event subscribed to
                    enum:
                    - PART_DELETE
                    example: PART_DELETE
                  url:
                    type: string
                    example: https://example.com
                  options:
                    type: object
                    description: Possible options
                    properties:
                      serializeEntity:
                        type: boolean
                        description: If true, the webhook will receive the part data
              - title: Part Quantity Changed
                type: object
                required:
                - type
                - url
                properties:
                  type:
                    type: string
                    description: Type of event subscribed to
                    enum:
                    - PART_QUANTITY_CHANGE
                    example: PART_QUANTITY_CHANGE
                  url:
                    type: string
                    example: https://example.com
              - title: Part Transfer
                type: object
                required:
                - type
                - url
                properties:
                  type:
                    type: string
                    description: Type of event subscribed to
                    enum:
                    - PART_TRANSFER
                    example: PART_TRANSFER
                  url:
                    type: string
                    example: https://example.com
              - title: Purchase Order Change
                type: object
                required:
                - type
                - url
                properties:
                  type:
                    type: string
                    description: Type of event subscribed to
                    enum:
                    - PURCHASE_ORDER_CHANGE
                    example: PURCHASE_ORDER_CHANGE
                  url:
                    type: string
                    example: https://example.com
                  options:
                    type: object
                    description: Possible options
                    properties:
                      serializeEntity:
                        type: boolean
                        description: If true, the webhook will receive the purchase order data
                      onlySerializeFilteredProperties:
                        type: boolean
                        description: If true and serializeEntity is also set to true, only the filtered properties will be returned on update.
                  filters:
                    type: object
                    description: Possible filters.
                    properties:
                      oneOfPurchaseOrderProperties:
                        type: array
                        description: Properties that will trigger the webhook. <br>*If no properties are selected, the webhook will be triggered on every changes
                        items:
                          title: Properties
                          type: string
                          enum:
                          - ATTACHMENTS
                          - BILLING_ADDRESS
                          - COSTS
                          - DUE_DATE
                          - EXTRA_FIELDS
                          - ITEMS
                          - NOTE
                          - OVERRIDE_NUMBER
                          - SHIPPING_ADDRESS
                          - STATUS
                          - TITLE
                          - VENDOR
                          - VENDOR_CONTACTS
              - title: Purchase Order Status Change
                type: object
                required:
                - type
                - url
                properties:
                  type:
                    type: string
                    description: Type of event subscribed to
                    enum:
                    - PURCHASE_ORDER_STATUS_CHANGE
                    example: PURCHASE_ORDER_STATUS_CHANGE
                  url:
                    type: string
                    example: https://example.com
                  options:
                    type: object
                    description: Possible options
                    properties:
                      serializePurchaseOrder:
                        type: boolean
                        description: If true, the webhook will receive the purchase order data
                      omitSendToVendorPopup:
                        type: boolean
                        description: If true, if the state change was done from the UI, the UI will not prompt the user to send the purchase order to the vendor. It will be assumed that the webhook took care of it.
                  filters:
                    type: object
                    description: Possible filters.
                    properties:
                      oneOfStatuses:
                        type: array
                        description: Statuses that will trigger the webhook
                        items:
                          title: Status
                          type: string
                          enum:
                          - APPROVED
                          - CANCELED
                          - COMPLETED
                          - DECLINED
                          - PARTIALLY_FULFILLED
                          - PENDING
                          - REQUESTED
                      vendors:
                        type: array
                        description: Vendors id that will trigger the webhook
                        items:
                          type: number
              - title: Role Archived
                type: object
                required:
                - type
                - url
                properties:
                  type:
                    type: string
                    description: Type of event subscribed to
                    enum:
                    - ROLE_ARCHIVED
                    example: ROLE_ARCHIVED
                  url:
                    type: string
                    example: https://example.com
              - title: Role Created
                type: object
                required:
                - type
                - url
                properties:
                  type:
                    type: string
                    description: Type of event subscribed to
                    enum:
                    - ROLE_CREATED
                    example: ROLE_CREATED
                  url:
                    type: string
                    example: https://example.com
              - title: Role Updated
                type: object
                required:
                - type
                - url
                properties:
                  type:
                    type: string
                    description: Type of event subscribed to
                    enum:
                    - ROLE_UPDATED
                    example: ROLE_UPDATED
                  url:
                    type: string
                    example: https://example.com
              - title: SSO Configuration Changed
                type: object
                required:
                - type
                - url
                properties:
                  type:
                    type: string
                    description: Type of event subscribed to
                    enum:
                    - SSO_CONFIG_CHANGED
                    example: SSO_CONFIG_CHANGED
                  url:
                    type: string
                    example: https://example.com
              - title: User Activated
                type: object
                required:
                - type
                - url
                properties:
                  type:
                    type: string
                    description: Type of event subscribed to
                    enum:
                    - USER_ACTIVATED
                    example: USER_ACTIVATED
                  url:
                    type: string
                    example: https://example.com
              - title: User Invited
                type: object
                required:
                - type
                - url
                properties:
                  type:
                    type: string
                    description: Type of event subscribed to
                    enum:
                    - USER_INVITED
                    example: USER_INVITED
                  url:
                    type: string
                    example: https://example.com
              - title: User Login Failure
                type: object
                required:
                - type
                - url
                properties:
                  type:
                    type: string
                    description: Type of event subscribed to
                    enum:
                    - USER_LOGIN_FAILURE
                    example: USER_LOGIN_FAILURE
                  url:
                    type: string
                    example: https://example.com
              - title: User Login Success
                type: object
                required:
                - type
                - url
                properties:
                  type:
                    type: string
                    description: Type of event subscribed to
                    enum:
                    - USER_LOGIN_SUCCESS
                    example: USER_LOGIN_SUCCESS
                  url:
                    type: string
                    example: https://example.com
              - title: User Logout
                type: object
                required:
                - type
                - url
                properties:
                  type:
                    type: string
                    description: Type of event subscribed to
                    enum:
                    - USER_LOGOUT
                    example: USER_LOGOUT
                  url:
                    type: string
                    example: https://example.com
              - title: User Permissions Changed
                type: object
                required:
                - type
                - url
                properties:
                  type:
                    type: string
                    description: Type of event subscribed to
                    enum:
                    - USER_PERMISSIONS_CHANGED
                    example: USER_PERMISSIONS_CHANGED
                  url:
                    type: string
                    example: https://example.com
              - title: User Removed
                type: object
                required:
                - type
                - url
                properties:
                  type:
                    type: string
                    description: Type of event subscribed to
                    enum:
                    - USER_REMOVED
                    example: USER_REMOVED
                  url:
                    type: string
                    example: https://example.com
              - title: User Role Changed
                type: object
                required:
                - type
                - url
                properties:
                  type:
                    type: string
                    description: Type of event subscribed to
                    enum:
                    - USER_ROLE_CHANGED
                    example: USER_ROLE_CHANGED
                  url:
                    type: string
                    example: https://example.com
              - title: User Session Revoked
                type: object
                required:
                - type
                - url
                properties:
                  type:
                    type: string
                    description: Type of event subscribed to
                    enum:
                    - USER_SESSION_REVOKED
                    example: USER_SESSION_REVOKED
                  url:
                    type: string
                    example: https://example.com
              - title: Webhook Archived
                type: object
                required:
                - type
                - url
                properties:
                  type:
                    type: string
                    description: Type of event subscribed to
                    enum:
                    - WEBHOOK_ARCHIVED
                    example: WEBHOOK_ARCHIVED
                  url:
                    type: string
                    example: https://example.com
              - title: Webhook Created
                type: object
                required:
                - type
                - url
                properties:
                  type:
                    type: string
                    description: Type of event subscribed to
                    enum:
                    - WEBHOOK_CREATED
                    example: WEBHOOK_CREATED
                  url:
                    type: string
                    example: https://example.com
              - title: Work Order Change
                type: object
                required:
                - type
                - url
                properties:
                  type:
                    type: string
                    description: Type of event subscribed to
                    enum:
                    - WORK_ORDER_CHANGE
                    example: WORK_ORDER_CHANGE
                  url:
                    type: string
                    example: https://example.com
                  options:
                    type: object
                    description: Possible options
                    properties:
                      serializeEntity:
                        type: boolean
                        description: If true, the webhook will receive the work order data
                      onlySerializeFilteredProperties:
                        type: boolean
                        description: If true and serializeEntity is also set to true, only the filtered properties will be returned on update.
                  filters:
                    type: object
                    description: Possible filters.
                    properties:
                      oneOfProperties:
                        type: ar

# --- truncated at 32 KB (248 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/maintainx/refs/heads/main/openapi/maintainx-subscriptions-webhooks-api-openapi.yml