List Data Loads

get

[host-url]/dt-rest/v2/projects/{projectId}/dataloads

Retrieves a list of data loads for a specific project. This method supports various query parameters to filter and customize the response:
  • fields: specifies the fields to include in the response (comma-separated)
  • name: filters data load name

The following examples demonstrate the supported query patterns:

  • Retrieve all data loads for a project:

    Retrieves all data loads for the project with the given projectId. All default fields for these data loads will be included in the response.

    /projects/{projectId}/dataloads

  • Retrieve all data loads for a project with specific fields:

    Retrieves all data loads for the project with the given projectId, and the response will only include the fields specified in the fields parameter.

    /projects/{projectId}/dataloads?fields=name,dataLoadId,...

  • Retrieves all data loads for a project by name:

    Retrieves data loads for the project with the given projectId that match the specified name. All default fields for these data loads will be included in the response.

    /projects/{projectId}/dataloads?name=your_dataload_name

  • Retrieve data loads for a project by name with specific fields:

    Retrieves data loads for the project with the given projectId that match the specified name, and the response will only include the fields specified in the fields parameter.

    /projects/{projectId}/dataloads?name=your_dataload_name&fields=name,dataLoadId,...

Request

Path Parameters
Query Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

a response object containing the list of data loads
Body ()
Root Schema : schema
Type: array
Show Source
Nested Schema : DataLoadBaseDTO
Type: object
Represents a base data load object, containing minimal attributes for data load operations.
Show Source

401 Response

Unauthorized

404 Response

Not Found
Back to Top