You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
These routes include some changes from the original API plan but maintains the same functionality (and adds a bit more as well), just reorganized under more RESTful paths.
Routes
These routes include some changes from the original API plan but maintains the same functionality (and adds a bit more as well), just reorganized under more RESTful paths.
Routes
/user
PUT
{email: <string>, password: <string>, org_id: <id>}
{token: <JWT>}
/user/login
POST
{email: <string>, password: <string>}
{token: <JWT>}
/user/{id}/state
POST
{state: <state obj>}
{status: "ok"}
/user/{id}/state
GET
{state: <state>}
/participant
GET
{participants: []<participant>}
/participant/search?q=<query>
GET
{participants: []<participant>}
/participant/flag
PUT
{participant_ids: []<id>}
{status: "ok"}
/participant/flag
DELETE
{participant_ids: []<id>}
{status: "ok"}
/participant/flagged
GET
{participants: []<participant>}
/participant/{id}/flag
POST
{status: "ok"}
/participant/{id}/flag
DELETE
{status: "ok"}
/participant/{id}/resume
GET
{url: <url>}
Types
{ id: <id>, email: <string>, resume: <url>, flagged: <bool> }
The text was updated successfully, but these errors were encountered: