API Documentation >> API 2.0 Main >> Entities >> Evaluation

Evaluation Entity

{
    evaluation: {
        evaluationGrade:                        // Evaluation grade
        itemDescription:                        // Item description grade
        packaging:                              // Packaging grade
        speed:                                  // Shipping speed grade
        comment:                                // Comment (can be empty if all grades are very good (1)
        complaint: []                           // Array of predefined complaints
    }
}

Grade values:

Possible complaint values:

Example Entities

{
    evaluation: {
        evaluationGrade: 1
        itemDescription: 4
        packaging: 1
        speed: 1
        comment: "not foil, but alternate art and wrong edition"
        complaint: [
            "wrongEd",
            "notFoil"
        ]
    }
}