Create or update an SLA response time rule
curl --request POST \
--url https://my.propops.app/api/agents/branch-sla-response-times \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"branch_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"csrf_token": "abc123def456",
"uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"job_status_from_id": 1,
"job_status_to_id": 3,
"job_type_id": 3,
"date_field_to_track": "created_at",
"date_field_to_compare": "updated_at",
"job_priority": 123,
"minimum_response_days": 5,
"description": "Emergency gas jobs must be actioned within 24 hours."
}
'{
"success": true,
"message": "Operation completed successfully"
}Response Times
Create or update an SLA response time rule
Configure SLA response time thresholds for specific job transitions. Required permission: api.agents.branch_sla_response_times.manage
POST
/
api
/
agents
/
branch-sla-response-times
Create or update an SLA response time rule
curl --request POST \
--url https://my.propops.app/api/agents/branch-sla-response-times \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"branch_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"csrf_token": "abc123def456",
"uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"job_status_from_id": 1,
"job_status_to_id": 3,
"job_type_id": 3,
"date_field_to_track": "created_at",
"date_field_to_compare": "updated_at",
"job_priority": 123,
"minimum_response_days": 5,
"description": "Emergency gas jobs must be actioned within 24 hours."
}
'{
"success": true,
"message": "Operation completed successfully"
}Documentation Index
Fetch the complete documentation index at: https://help.propops.app/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
All API requests must include a valid Bearer token in the Authorization header.
Tokens are 64-character SHA-256 session hashes issued by the PropOps authentication system.
Example:
Authorization: Bearer a1b2c3d4e5f6...Body
application/json
Example:
"abc123def456"
Rule UUID (for updates)
Example:
1
Example:
3
Example:
3
Example:
"created_at"
Example:
"updated_at"
Example:
5
Example:
"Emergency gas jobs must be actioned within 24 hours."
⌘I