Send Requests

Review the following information before sending requests using the Data Transforms REST API.

URL Structure

Here's the URL structure for the requests:

https://<host-url>/<context-path>/<resource-path>

Where host-url is your Data Transforms host URL (see Quick Start), and context-path is /dt-rest/v2.

Supported Methods

Perform basic CRUD operations (create, read, update, and delete) on your Data Transforms service using standard HTTP request methods.

HTTP Method Description
GET Retrieve information about the service instance.
POST Create, scale, backup, start, or stop the service instance.
PUT Update the service instance.
DELETE Delete the service instance.

Media Types

The following media types are supported by the Data Tranforms REST API:

  • application/json

Supported Headers

The Data Tranforms REST API supports the following headers that may be passed in the header section of the HTTP request or response.

Header Description Example
Accept Media type of the body of the response. Accept application/json
Content-Type Media type of the body of the request. Required for POST and PUT requests. Content-Type: application/json
Authorization Token for the particular session authorization: Bearer <Token value>