HomeRecipesAPI ReferenceChangelogDiscussions
Log In
Discussions

Discussions

Ask a Question
Back to All

Need API details for Apply/Filter in WO feedList

Please share endpoint for Apply/Filter in WO feedList.

Please check the below API curl or search QueryExpression WorkOrder in postman collection

curl --location 'https://am-ce99c.corrigo.com/api/v1/query/WorkOrder' \
--header 'CompanyName: Corrigo Demo' \
--header 'Authorization: Bearer your token' \
--header 'Content-Type: application/json' \
--data '{
    "QueryExpression": {
        "Criteria": {
            "Conditions": [
                {
                    "PropertyName": "property name",
                    "Operator": "Equal",
                    "Values": [
                        "value"
                    ]
                }
            ],
            "FilterOperator": "And"
        },
        "Distinct": true,
        "PropertySet": {
            "Properties": [
               "*"
            ]
        },
        "Count": 2,
        "FirstResultIndex": 0
    }
}'