PUT {HOST:URL}/gl/dropPartition/{dateString}

This API purges data for the partition specified by the dateString URL parameter.

URL Parameters

This API has the following URL parameters.

dateString
The date that identifies the partition. Must be in the format MMYYYY where MM is the two digit month and YYYY is the four digit year. For example, for February 2023, use 022023.

Example

The following example shows a response for the following parameter:
  • dateString: 022023
{
    "status": 1,
    "Tables": [
        {
            "name": "glmtxevent",
            "message": "Partition: glmtxevent_022023 is droped.",
            "success": 1
        },
        {
            "name": "dailysummary",
            "message": "Partition: dailysummary_022023 is droped.",
            "success": 1
        }
    ]
}