Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

List Projects

GET https://topicsquirro-api.squirro.comendpoint/api/topic/v0/(string: tenant)/projects

...

Create Project

POST https://topicsquirro-api.squirro.comendpoint/api/topic/v0/(string: tenant)/projects

...

Parameters:
Form Parameters:
  • owner_id – User identifier that owns the project.
  • title – Descriptive title of the project (optional, string of max. 200 characters).
  • seeder – The seeder that owns this project (optional, string of max. 20 characters).
Headers:See Common Headers.
Status Codes:
  • 201 – Project was created.

See also Common Status Codes.

Returns:

Object with project identifier.

Code Block
js
js
{
   "id": "pa-bX3aiTPOTaH7HV5JCgw"
}

Get Project

GET https://topicsquirro-api.squirro.comendpoint/api/topic/v0/(string: tenant)/projects/(id: project_id)

...

Update Project

PUT https://topicsquirro-api.squirro.comendpoint/api/topic/v0/(string: tenant)/projects/(id: project_id)

...

Delete Project

DELETE https://topicsquirro-api.squirro.comendpoint/api/topic/v0/(string: tenant)/projects/(id: project_id)

...