Delete a bulk extract

delete

/services/rest/connect/v1.4/bulkExtracts/{id}

Request

Path Parameters
Back to Top

Response

Default Response

Body ()
Root Schema : No content
Type: null
Title: No content
No content returned on delete
Back to Top

Examples

Use DELETE with the following syntax to delete bulkExtract:

https://your_site_interface/services/rest/connect/version/bulkExtracts/bulkExtract_id

Request URI example:

https://mysite.example.com/services/rest/connect/v1.4/bulkExtracts/1

Response example

The status 200 OK is returned. Then running this ROQL tabular query on bulkExtract records:

https://mysite.example.com/services/rest/connect/v1.4/queryResults?query=select id,name from bulkExtracts

returns the following:

{
    "items": [
        {
            "tableName": "bulkExtracts",
            "count": 1,
            "columnNames": [
                "id",
                "name"
            ],
            "rows": [
                [
                    "2",
                    "ExtractExample2"
                ]
            ]
        }
    ],
    "links": [
        {
            "rel": "self",
            "href": "https://mysite.example.com/services/rest/connect/v1.4/queryResults?query=select%20id,name%20from%20bulkExtracts"
        },
        {
            "rel": "canonical",
            "href": "https://mysite.example.com/services/rest/connect/v1.4/queryResults"
        },
        {
            "rel": "describedby",
            "href": "https://mysite.example.com/services/rest/connect/v1.4/metadata-catalog/queryResults",
            "mediaType": "application/schema+json"
        }
    ]
}
Back to Top