Skip to main content

Creates a new table within a dataset by downloading a file from a URL.

POST 

/api/v2/Dataset/:id/table/Url

Dataset processing occurs in the background and may take several minutes to complete.

Request

Path Parameters

    id uuidrequired

    The unique identifier of the dataset where the table will be created.

Query Parameters

    culture string

    Use this param to override the culture of the response. Options: - en (default) - es

Body

The dataset table creation request containing the file URL and metadata.

    tableIdentifier stringrequired

    Possible values: non-empty and <= 64 characters, Value must match regular expression ^[a-zA-Z0-9\-]*$

    Unique identifier for the table within the dataset. Must be alphanumeric with optional hyphens. Maximum 64 characters.

    tableDisplayName stringrequired

    Possible values: non-empty and <= 64 characters

    Display name for the table. Maximum 64 characters.

    tableDescription stringnullable

    Possible values: <= 4000 characters

    Detailed description of the table. Maximum 4000 characters.

    fileUrl stringnullable

    Publicly accessible URL of the CSV file to download and use as the table source.

Responses

Table created successfully and processing job scheduled.

Loading...