Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.catenatelematics.com/llms.txt

Use this file to discover all available pages before exploring further.

v2.1.0 - Partner Properties & Schema Updates
17th December 2025
This minor release makes partner properties endpoints publicly available, streamlines the partner update schema, and refines security scopes for better access control.
Minor Release: This release includes breaking changes to the PartnerUpdate schema and introduces new public endpoints for partner properties management.

New Public Endpoints

Three partner properties endpoints are now publicly available:Added:
  • GET /v2/orgs/partners/{partner_id}/properties - List partner properties
  • POST /v2/orgs/partners/{partner_id}/properties - Create partner properties
  • DELETE /v2/orgs/partners/{partner_id}/properties/{property_id} - Delete partner property
These endpoints were previously excluded from the public API and are now available for managing custom partner metadata.Example Usage:
# List all properties for a partner
GET /v2/orgs/partners/{partner_id}/properties

# Create a new property
POST /v2/orgs/partners/{partner_id}/properties
{
  "key": "custom_field",
  "value": "custom_value"
}

# Delete a property
DELETE /v2/orgs/partners/{partner_id}/properties/{property_id}
If you need to update existing properties, please use the delete endpoint followed by create.
Added:
  • PATCH /v2/orgs/partners/{partner_id} - Update partner details

Security Scope Changes

Updated Scopes:
EndpointOld ScopeNew Scope
GET /v2/orgs/partners/{partner_id}/propertiespartner:readpartner-property:read
POST /v2/orgs/partners/{partner_id}/propertiespartner:createpartner-property:create
DELETE /v2/orgs/partners/{partner_id}/properties/{property_id}partner:createpartner-property:create
Impact: More granular access control for partner properties operations. Token scopes were adjusted accordingly.

Need Help?

API Reference

View complete endpoint documentation with current API structure

Contact Support

Questions about migrating your integration? Our team is here to help