Get possible values for Item Status

Get possible values for Item Status.

Sample response:

{
    "results": [
        {
            "name": "RUNNING",
            "value": "Running"
        },
        {
            "name": "CRAWLING",
            "value": "Crawling"
        },
        {
            "name": "CRAWLING_ERROR",
            "value": "Crawling Error"
        },
        {
            "name": "NEED_TO_EDIT",
            "value": "Need To Edit"
        },
        {
            "name": "PAUSED",
            "value": "Paused"
        },
        {
            "name": "STOPPED",
            "value": "Stopped"
        },
        {
            "name": "PENDING_APPROVAL",
            "value": "Pending Approval"
        },
        {
            "name": "REJECTED",
            "value": "Rejected"
        }
    ]
    // Additional detail omitted...
}

πŸ“˜

Traversing the Tree

The request URL in this example ends with 3 chained keys: campaigns_properties, items_properties and status - returned by Get list of Dictionaries, Get list of Campaign Enums and Get list of Item Enums respectively. (See Traversing the Tree for an overview.)

Language