Get a bulk extract result

get

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

Request

Path Parameters
Back to Top

Response

Default Response

Body ()
Root Schema : bulkExtractResults
Type: object
The results of bulk extracts containing information about the object records retrieved from Oracle B2C Service.
Show Source
Nested Schema : bulkExtract
Type: object
The parameters of the bulk extract job. It is the reference to a resource in 'bulkExtracts' collection. Only ID or lookupName can be provided to specify the resource.
Nested Schema : bulkExtractResults-exportedData
Type: object
The file attachments associated with the results of a bulk extract request.
Show Source
Nested Schema : namedIDs-bulkExtractResults-state
Type: object
An ID which has an associated name string. These IDs can be set by either value or name. If the name cannot uniquely determine the value, an error is generated.
Show Source
Back to Top

Examples

Use GET with the following syntax to retrieve data for a bulkExtractResult object:

https://your_site_interface/services/rest/connect/version/bulkExtractResults/bulkExtractResult_id

Request URI example:

https://mysite.example.com/services/rest/connect/v1.4/bulkExtractResults/2

Response example

{
    "id": 2,
    "lookupName": "2",
    "createdTime": "2019-01-14T17:52:48.000Z",
    "updatedTime": "2019-01-14T17:52:49.000Z",
    "bulkExtract": {
        "links": [
            {
                "rel": "self",
                "href": "https://mysite.example.com/services/rest/connect/v1.4/bulkExtracts/2"
            },
            {
                "rel": "canonical",
                "href": "https://mysite.example.com/services/rest/connect/v1.4/bulkExtracts/2"
            },
            {
                "rel": "describedby",
                "href": "https://mysite.example.com/services/rest/connect/v1.4/metadata-catalog/bulkExtracts",
                "mediaType": "application/schema+json"
            }
        ]
    },
    "createdByAccount": {
        "links": [
            {
                "rel": "self",
                "href": "https://mysite.example.com/services/rest/connect/v1.4/accounts/2"
            },
            {
                "rel": "canonical",
                "href": "https://mysite.example.com/services/rest/connect/v1.4/accounts/2"
            },
            {
                "rel": "describedby",
                "href": "https://mysite.example.com/services/rest/connect/v1.4/metadata-catalog/accounts",
                "mediaType": "application/schema+json"
            }
        ]
    },
    "description": "Completed Successfully",
    "exportedData": {
        "links": [
            {
                "rel": "self",
                "href": "https://mysite.example.com/services/rest/connect/v1.4/bulkExtractResults/2/exportedData"
            },
            {
                "rel": "full",
                "href": "https://mysite.example.com/services/rest/connect/v1.4/bulkExtractResults/2/exportedData/{exportedData_id}",
                "templated": true
            }
        ]
    },
    "intervalRowCount": 73,
    "processGuard": 1547509828,
    "state": {
        "id": 3,
        "lookupName": "Completed"
    },
    "totalRowCount": 73,
    "updatedByAccount": {
        "links": [
            {
                "rel": "self",
                "href": "https://mysite.example.com/services/rest/connect/v1.4/accounts/2"
            },
            {
                "rel": "canonical",
                "href": "https://mysite.example.com/services/rest/connect/v1.4/accounts/2"
            },
            {
                "rel": "describedby",
                "href": "https://mysite.example.com/services/rest/connect/v1.4/metadata-catalog/accounts",
                "mediaType": "application/schema+json"
            }
        ]
    },
    "links": [
        {
            "rel": "self",
            "href": "https://mysite.example.com/services/rest/connect/v1.4/bulkExtractResults/2"
        },
        {
            "rel": "canonical",
            "href": "https://mysite.example.com/services/rest/connect/v1.4/bulkExtractResults/2"
        },
        {
            "rel": "describedby",
            "href": "https://mysite.example.com/services/rest/connect/v1.4/metadata-catalog/bulkExtractResults",
            "mediaType": "application/schema+json"
        }
    ]
}
Back to Top