export_memberships
Extract membership data from ServiceTitan by specifying a tenant ID and optional parameters like a continuation token or recent changes flag for efficient API integration.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
from | No | Continuation token or custom date string | |
includeRecentChanges | No | Include recent changes quicker | |
tenant | Yes | Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"from": {
"description": "Continuation token or custom date string",
"type": "string"
},
"includeRecentChanges": {
"description": "Include recent changes quicker",
"type": "boolean"
},
"tenant": {
"description": "Tenant ID",
"type": "integer"
}
},
"required": [
"tenant"
],
"type": "object"
}