Get customer predictions
Retrieve customer predictions for a specific customer, department, and prediction feature
Path Parameters
departmentUUID string required
customerUUID string required
Responses
- 200
 
OK
application/json
Schema
Example (from schema)
Schema
- Array [
 - ]
 - Array [
 - ]
 - Array [
 - ]
 
predictions object[]
uuid string
departmentUuid string
dealerUuid string
customerUuid string
prediction object
oneOf
object
object
object
object
object
object
createdBy object
type string
Possible values: [MESSAGE, USER, APPOINTMENT]
uuid string
updatedBy object
type string
Possible values: [MESSAGE, USER, APPOINTMENT]
uuid string
createTimestamp date-time
updateTimestamp date-time
requestUUID string
errors object[]
errorCode string
errorDescription string
errorUID string
warnings object[]
warningCode string
warningDescription string
{
  "predictions": [
    {
      "uuid": "string",
      "departmentUuid": "string",
      "dealerUuid": "string",
      "customerUuid": "string",
      "prediction": {
        "active": true,
        "type": "string",
        "category": "COMPLAINTS",
        "shortSummary": "string",
        "notes": "string",
        "notesPointersForFollowUp": "string"
      },
      "createdBy": {
        "type": "MESSAGE",
        "uuid": "string"
      },
      "updatedBy": {
        "type": "MESSAGE",
        "uuid": "string"
      },
      "createTimestamp": "2025-10-30T17:04:36.388Z",
      "updateTimestamp": "2025-10-30T17:04:36.388Z"
    }
  ],
  "requestUUID": "string",
  "errors": [
    {
      "errorCode": "string",
      "errorDescription": "string",
      "errorUID": "string"
    }
  ],
  "warnings": [
    {
      "warningCode": "string",
      "warningDescription": "string"
    }
  ]
}
Loading...