Get Customer Status Log

Retrieves the log of customer status changes.

Response Parameter

ParameterData TypeDescription
dataArray[Object]List of status objects.
-createdByUserStringUsername of the user who created the status
-reasonStringReason for the status (e.g., "This is the active customer").
-createdByNumberUser ID of the creator.
-actionsArrayList of possible actions
-autoUpdateTimeString (Date)Timestamp of auto-update (format: YYYY-MM-DD).
-createdOnString (ISO)Creation timestamp (format: YYYY-MM-DDTHH:MM:SSZ).
-entityIdNumberUnique ID of the associated entity.
-isActiveBooleanIndicates if the status is active (true/false).
-labelStringDisplay label (e.g., "Active").
-statusStringSystem 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": []
}

API specific error code

Error CodeDescriptionReason
400Bad RequestInvalid input parameters (malformed body/query)
401UnauthorizedMissing or invalid authentication token
404Not FoundIncorrect URL or endpoint
500Internal Server ErrorUnexpected server failure (contact support)
8015Customer not found for the given identifiersInvalid customer identifier
Language
URL
Click Try It! to start a request and see the response here!