List all Transformation Projects within Account
Returns a list of all transformation projects available via API within your Fivetran account.
Request schema
Query parameters
cursor
string
Paging cursor, read more about pagination
example:
limit
integer
Number of records to fetch per page. Accepts a number in the range 1..1000; the default value is 100
format:
example:
Header parameters
Authorization
stringrequired
HTTP: basicAuth
HTTP AuthorizationScheme: basic
Accept
string
default:
example:
Http + 1.1
GET
https://api.fivetran.com/v1/transformation-projects
GET /v1/transformation-projects?cursor=cursor_value&limit=100 HTTP/1.1
Accept: application/json
Authorization: Basic REPLACE_BASIC_AUTH
Host: api.fivetran.com
Responses
200
Successful response
Successful response schema
code
stringrequired
Response status code
example:
message
string
Response status text
example:
data
objectrequired
items
arrayrequired
The collection of returned items
id
string
The unique identifier for the transformation project within the Fivetran system
type
string
Transformation project type
enum:
created_at
string
The timestamp when the transformation project was created
format:
created_by_id
string
The unique identifier for the actor (user or system key) within the Fivetran system
group_id
string
The unique identifier for the group within the Fivetran system
nextCursor
string
The value of the cursor parameter for the next page
example:
{
"code": "Success",
"message": "Operation performed.",
"data": {
"items": [
{
"id": "string",
"type": "DBT_GIT",
"created_at": "2019-08-24T14:15:22Z",
"created_by_id": "string",
"group_id": "string"
}
],
"nextCursor": "cursor_value"
}
}