Download OpenAPI specification:Download
API for managing workorder portal links
Retrieve a list of all workorder portal links with optional filtering and pagination
| page | integer >= 1 Default: 1 Page number for pagination |
| per_page | integer [ 1 .. 100 ] Default: 25 Number of items per page |
| sort | string Sort field |
| company_namespace | Array of strings Company namespace for filtering |
| workorder | string Filter by workorder ID |
| is_active | boolean Filter by active status |
| link_type | string Enum: "public" "private" "secure" Filter by link type |
| _id | Array of strings Filter by ID |
{- "success": true,
- "data": [
- {
- "_id": "507f1f77bcf86cd799439011",
- "workorder": "507f1f77bcf86cd799439012",
- "link_token": "wpl_abc123def456",
- "link_type": "private",
- "permissions": {
- "can_view_details": true,
- "can_add_comments": true,
- "can_upload_files": false,
- "can_view_history": true,
- "can_approve_reject": false
}, - "access_restrictions": {
- "allowed_ips": [
- "string"
], - "max_uses": 0,
- "password_protected": false,
- "require_email_verification": false
}, - "expiry_date": "2019-08-24T14:15:22Z",
- "is_active": true,
- "usage_stats": {
- "total_views": 15,
- "unique_visitors": 3,
- "last_accessed": "2019-08-24T14:15:22Z",
- "access_log": [
- {
- "timestamp": "2019-08-24T14:15:22Z",
- "ip_address": "string",
- "user_agent": "string",
- "action": "string"
}
]
}, - "notification_settings": {
- "notify_on_access": false,
- "notify_on_comment": true,
- "notify_on_file_upload": true,
- "notification_recipients": [
- "string"
]
}, - "custom_branding": {
- "logo_url": "string",
- "brand_color": "#FF5733",
- "custom_domain": "string",
- "footer_text": "string"
}, - "metadata": {
- "created_by": "string",
- "purpose": "string",
- "tags": [
- "string"
]
}, - "company_namespace": [
- "string"
], - "createdAt": "2019-08-24T14:15:22Z",
- "modifiedAt": "2019-08-24T14:15:22Z",
- "SVClient": 0,
- "__v": 0
}
], - "paging": {
- "total": 0,
- "page": 0,
- "per_page": 0,
- "pages": 0
}
}Create a new workorder portal link
| workorder required | string Workorder ID reference |
| link_type | string Default: "private" Enum: "public" "private" "secure" Type of portal link |
object | |
object | |
| expiry_date | string <date-time> When the portal link expires |
object | |
object | |
object | |
| is_active | boolean Default: true Whether the portal link is active |
| company_namespace | Array of strings Company namespace |
{- "workorder": "507f1f77bcf86cd799439012",
- "link_type": "public",
- "permissions": {
- "can_view_details": true,
- "can_add_comments": true,
- "can_upload_files": false,
- "can_view_history": true,
- "can_approve_reject": false
}, - "access_restrictions": {
- "allowed_ips": [
- "string"
], - "max_uses": 0,
- "password_protected": false,
- "require_email_verification": false
}, - "expiry_date": "2019-08-24T14:15:22Z",
- "notification_settings": {
- "notify_on_access": false,
- "notify_on_comment": true,
- "notify_on_file_upload": true,
- "notification_recipients": [
- "string"
]
}, - "custom_branding": {
- "logo_url": "string",
- "brand_color": "string",
- "custom_domain": "string",
- "footer_text": "string"
}, - "metadata": {
- "purpose": "string",
- "tags": [
- "string"
]
}, - "is_active": true,
- "company_namespace": [
- "string"
]
}{- "success": true,
- "data": {
- "_id": "507f1f77bcf86cd799439011",
- "workorder": "507f1f77bcf86cd799439012",
- "link_token": "wpl_abc123def456",
- "link_type": "private",
- "permissions": {
- "can_view_details": true,
- "can_add_comments": true,
- "can_upload_files": false,
- "can_view_history": true,
- "can_approve_reject": false
}, - "access_restrictions": {
- "allowed_ips": [
- "string"
], - "max_uses": 0,
- "password_protected": false,
- "require_email_verification": false
}, - "expiry_date": "2019-08-24T14:15:22Z",
- "is_active": true,
- "usage_stats": {
- "total_views": 15,
- "unique_visitors": 3,
- "last_accessed": "2019-08-24T14:15:22Z",
- "access_log": [
- {
- "timestamp": "2019-08-24T14:15:22Z",
- "ip_address": "string",
- "user_agent": "string",
- "action": "string"
}
]
}, - "notification_settings": {
- "notify_on_access": false,
- "notify_on_comment": true,
- "notify_on_file_upload": true,
- "notification_recipients": [
- "string"
]
}, - "custom_branding": {
- "logo_url": "string",
- "brand_color": "#FF5733",
- "custom_domain": "string",
- "footer_text": "string"
}, - "metadata": {
- "created_by": "string",
- "purpose": "string",
- "tags": [
- "string"
]
}, - "company_namespace": [
- "string"
], - "createdAt": "2019-08-24T14:15:22Z",
- "modifiedAt": "2019-08-24T14:15:22Z",
- "SVClient": 0,
- "__v": 0
}
}Retrieve a specific workorder portal link by its ID
| id required | string Workorder portal link ID |
{- "success": true,
- "data": {
- "_id": "507f1f77bcf86cd799439011",
- "workorder": "507f1f77bcf86cd799439012",
- "link_token": "wpl_abc123def456",
- "link_type": "private",
- "permissions": {
- "can_view_details": true,
- "can_add_comments": true,
- "can_upload_files": false,
- "can_view_history": true,
- "can_approve_reject": false
}, - "access_restrictions": {
- "allowed_ips": [
- "string"
], - "max_uses": 0,
- "password_protected": false,
- "require_email_verification": false
}, - "expiry_date": "2019-08-24T14:15:22Z",
- "is_active": true,
- "usage_stats": {
- "total_views": 15,
- "unique_visitors": 3,
- "last_accessed": "2019-08-24T14:15:22Z",
- "access_log": [
- {
- "timestamp": "2019-08-24T14:15:22Z",
- "ip_address": "string",
- "user_agent": "string",
- "action": "string"
}
]
}, - "notification_settings": {
- "notify_on_access": false,
- "notify_on_comment": true,
- "notify_on_file_upload": true,
- "notification_recipients": [
- "string"
]
}, - "custom_branding": {
- "logo_url": "string",
- "brand_color": "#FF5733",
- "custom_domain": "string",
- "footer_text": "string"
}, - "metadata": {
- "created_by": "string",
- "purpose": "string",
- "tags": [
- "string"
]
}, - "company_namespace": [
- "string"
], - "createdAt": "2019-08-24T14:15:22Z",
- "modifiedAt": "2019-08-24T14:15:22Z",
- "SVClient": 0,
- "__v": 0
}
}Update an existing workorder portal link
| id required | string Workorder portal link ID |
| link_type | string Enum: "public" "private" "secure" Type of portal link |
object | |
object | |
| expiry_date | string <date-time> When the portal link expires |
| is_active | boolean Whether the portal link is active |
object | |
object | |
object | |
| company_namespace | Array of strings Company namespace |
{- "link_type": "public",
- "permissions": {
- "can_view_details": true,
- "can_add_comments": true,
- "can_upload_files": true,
- "can_view_history": true,
- "can_approve_reject": true
}, - "access_restrictions": {
- "allowed_ips": [
- "string"
], - "max_uses": 0,
- "password_protected": true,
- "require_email_verification": true
}, - "expiry_date": "2019-08-24T14:15:22Z",
- "is_active": true,
- "notification_settings": {
- "notify_on_access": true,
- "notify_on_comment": true,
- "notify_on_file_upload": true,
- "notification_recipients": [
- "string"
]
}, - "custom_branding": {
- "logo_url": "string",
- "brand_color": "string",
- "custom_domain": "string",
- "footer_text": "string"
}, - "metadata": {
- "purpose": "string",
- "tags": [
- "string"
]
}, - "company_namespace": [
- "string"
]
}{- "success": true,
- "data": {
- "_id": "507f1f77bcf86cd799439011",
- "workorder": "507f1f77bcf86cd799439012",
- "link_token": "wpl_abc123def456",
- "link_type": "private",
- "permissions": {
- "can_view_details": true,
- "can_add_comments": true,
- "can_upload_files": false,
- "can_view_history": true,
- "can_approve_reject": false
}, - "access_restrictions": {
- "allowed_ips": [
- "string"
], - "max_uses": 0,
- "password_protected": false,
- "require_email_verification": false
}, - "expiry_date": "2019-08-24T14:15:22Z",
- "is_active": true,
- "usage_stats": {
- "total_views": 15,
- "unique_visitors": 3,
- "last_accessed": "2019-08-24T14:15:22Z",
- "access_log": [
- {
- "timestamp": "2019-08-24T14:15:22Z",
- "ip_address": "string",
- "user_agent": "string",
- "action": "string"
}
]
}, - "notification_settings": {
- "notify_on_access": false,
- "notify_on_comment": true,
- "notify_on_file_upload": true,
- "notification_recipients": [
- "string"
]
}, - "custom_branding": {
- "logo_url": "string",
- "brand_color": "#FF5733",
- "custom_domain": "string",
- "footer_text": "string"
}, - "metadata": {
- "created_by": "string",
- "purpose": "string",
- "tags": [
- "string"
]
}, - "company_namespace": [
- "string"
], - "createdAt": "2019-08-24T14:15:22Z",
- "modifiedAt": "2019-08-24T14:15:22Z",
- "SVClient": 0,
- "__v": 0
}
}Regenerate the portal link URL and access token
| id required | string Workorder portal link ID |
{- "success": true,
- "data": {
- "_id": "507f1f77bcf86cd799439011",
- "workorder": "507f1f77bcf86cd799439012",
- "link_token": "wpl_abc123def456",
- "link_type": "private",
- "permissions": {
- "can_view_details": true,
- "can_add_comments": true,
- "can_upload_files": false,
- "can_view_history": true,
- "can_approve_reject": false
}, - "access_restrictions": {
- "allowed_ips": [
- "string"
], - "max_uses": 0,
- "password_protected": false,
- "require_email_verification": false
}, - "expiry_date": "2019-08-24T14:15:22Z",
- "is_active": true,
- "usage_stats": {
- "total_views": 15,
- "unique_visitors": 3,
- "last_accessed": "2019-08-24T14:15:22Z",
- "access_log": [
- {
- "timestamp": "2019-08-24T14:15:22Z",
- "ip_address": "string",
- "user_agent": "string",
- "action": "string"
}
]
}, - "notification_settings": {
- "notify_on_access": false,
- "notify_on_comment": true,
- "notify_on_file_upload": true,
- "notification_recipients": [
- "string"
]
}, - "custom_branding": {
- "logo_url": "string",
- "brand_color": "#FF5733",
- "custom_domain": "string",
- "footer_text": "string"
}, - "metadata": {
- "created_by": "string",
- "purpose": "string",
- "tags": [
- "string"
]
}, - "company_namespace": [
- "string"
], - "createdAt": "2019-08-24T14:15:22Z",
- "modifiedAt": "2019-08-24T14:15:22Z",
- "SVClient": 0,
- "__v": 0
}
}Activate a workorder portal link
| id required | string Workorder portal link ID |
{- "success": true,
- "data": {
- "_id": "507f1f77bcf86cd799439011",
- "workorder": "507f1f77bcf86cd799439012",
- "link_token": "wpl_abc123def456",
- "link_type": "private",
- "permissions": {
- "can_view_details": true,
- "can_add_comments": true,
- "can_upload_files": false,
- "can_view_history": true,
- "can_approve_reject": false
}, - "access_restrictions": {
- "allowed_ips": [
- "string"
], - "max_uses": 0,
- "password_protected": false,
- "require_email_verification": false
}, - "expiry_date": "2019-08-24T14:15:22Z",
- "is_active": true,
- "usage_stats": {
- "total_views": 15,
- "unique_visitors": 3,
- "last_accessed": "2019-08-24T14:15:22Z",
- "access_log": [
- {
- "timestamp": "2019-08-24T14:15:22Z",
- "ip_address": "string",
- "user_agent": "string",
- "action": "string"
}
]
}, - "notification_settings": {
- "notify_on_access": false,
- "notify_on_comment": true,
- "notify_on_file_upload": true,
- "notification_recipients": [
- "string"
]
}, - "custom_branding": {
- "logo_url": "string",
- "brand_color": "#FF5733",
- "custom_domain": "string",
- "footer_text": "string"
}, - "metadata": {
- "created_by": "string",
- "purpose": "string",
- "tags": [
- "string"
]
}, - "company_namespace": [
- "string"
], - "createdAt": "2019-08-24T14:15:22Z",
- "modifiedAt": "2019-08-24T14:15:22Z",
- "SVClient": 0,
- "__v": 0
}
}Deactivate a workorder portal link
| id required | string Workorder portal link ID |
{- "success": true,
- "data": {
- "_id": "507f1f77bcf86cd799439011",
- "workorder": "507f1f77bcf86cd799439012",
- "link_token": "wpl_abc123def456",
- "link_type": "private",
- "permissions": {
- "can_view_details": true,
- "can_add_comments": true,
- "can_upload_files": false,
- "can_view_history": true,
- "can_approve_reject": false
}, - "access_restrictions": {
- "allowed_ips": [
- "string"
], - "max_uses": 0,
- "password_protected": false,
- "require_email_verification": false
}, - "expiry_date": "2019-08-24T14:15:22Z",
- "is_active": true,
- "usage_stats": {
- "total_views": 15,
- "unique_visitors": 3,
- "last_accessed": "2019-08-24T14:15:22Z",
- "access_log": [
- {
- "timestamp": "2019-08-24T14:15:22Z",
- "ip_address": "string",
- "user_agent": "string",
- "action": "string"
}
]
}, - "notification_settings": {
- "notify_on_access": false,
- "notify_on_comment": true,
- "notify_on_file_upload": true,
- "notification_recipients": [
- "string"
]
}, - "custom_branding": {
- "logo_url": "string",
- "brand_color": "#FF5733",
- "custom_domain": "string",
- "footer_text": "string"
}, - "metadata": {
- "created_by": "string",
- "purpose": "string",
- "tags": [
- "string"
]
}, - "company_namespace": [
- "string"
], - "createdAt": "2019-08-24T14:15:22Z",
- "modifiedAt": "2019-08-24T14:15:22Z",
- "SVClient": 0,
- "__v": 0
}
}