get https://{host}/v2/customers//statusLog
Retrieves the log of customer status changes.
Response Parameter
Parameter | Data Type | Description |
---|---|---|
data | Array[Object] | List of status objects. |
-createdByUser | String | Username of the user who created the status |
-reason | String | Reason for the status (e.g., "This is the active customer" ). |
-createdBy | Number | User ID of the creator. |
-actions | Array | List of possible actions |
-autoUpdateTime | String (Date) | Timestamp of auto-update (format: YYYY-MM-DD ). |
-createdOn | String (ISO) | Creation timestamp (format: YYYY-MM-DDTHH:MM:SSZ ). |
-entityId | Number | Unique ID of the associated entity. |
-isActive | Boolean | Indicates if the status is active (true /false ). |
-label | String | Display label (e.g., "Active" ). |
-status | String | System status value (e.g., "ACTIVE" ). |
{
"data": [
{
"createdByUser": "1736163234_",
"reason": "This is the active customer",
"createdBy": 75155291,
"actions": [],
"autoUpdateTime": "2025-01-30",
"createdOn": "2025-01-30T09:17:06Z",
"entityId": 564590100,
"isActive": true,
"label": "Active",
"status": "ACTIVE"
}
],
"warnings": [],
"errors": []
}