Generated
Project
Skitflow API reference for Project endpoints.
Authorization
Authorization AuthorizationBearer <token>
In: header
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
curl -X POST "https://example.com/project.create" \ -H "Content-Type: application/json" \ -d '{ "name": "string" }'Empty
{ "message": "string", "code": "string", "issues": [ { "message": "string" } ]}Authorization
Authorization AuthorizationBearer <token>
In: header
Query Parameters
projectId*string
Response Body
application/json
application/json
curl -X GET "https://example.com/project.one?projectId=string"Empty
{ "message": "string", "code": "string", "issues": [ { "message": "string" } ]}Authorization
Authorization AuthorizationBearer <token>
In: header
Response Body
application/json
application/json
curl -X GET "https://example.com/project.all"Empty
{ "message": "string", "code": "string", "issues": [ { "message": "string" } ]}Authorization
Authorization AuthorizationBearer <token>
In: header
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
curl -X POST "https://example.com/project.remove" \ -H "Content-Type: application/json" \ -d '{ "projectId": "string" }'Empty
{ "message": "string", "code": "string", "issues": [ { "message": "string" } ]}Authorization
Authorization AuthorizationBearer <token>
In: header
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
curl -X POST "https://example.com/project.update" \ -H "Content-Type: application/json" \ -d '{ "name": "string", "projectId": "string" }'Empty
{ "message": "string", "code": "string", "issues": [ { "message": "string" } ]}