Official Tinq.ai python SDK.
Method | HTTP request | Description |
---|---|---|
create_project | POST /projects | Create Project |
get_all_projects | GET /projects/ | Get All Projects |
get_project | GET /projects/ | Get Project |
update_project | PUT /projects/ | Update Project |
create_project(body=body)Create Project
Name | Type | Description | Notes |
---|---|---|---|
body | object | [optional] |
Status code | Description | Response headers |
---|---|---|
200 | Successful response | - |
get_all_projects(order=order, column_sort=column_sort, name=name)Get All Projects Get all your projects
Name | Type | Description | Notes |
---|---|---|---|
order | str | [optional] | |
column_sort | str | [optional] | |
name | str | [optional] |
Status code | Description | Response headers |
---|---|---|
200 | Successful response | - |
get_project(project)Get Project Get a specific project given its identifier
Name | Type | Description | Notes |
---|---|---|---|
project | str |
Status code | Description | Response headers |
---|---|---|
200 | Successful response | - |
update_project(project, body=body)Update Project
Name | Type | Description | Notes |
---|---|---|---|
project | str | ||
body | object | [optional] |
Status code | Description | Response headers |
---|---|---|
200 | Successful response | - |