Join project

Accept invitation

Accept invitation to a project. The project to which you join is parsed from the token.

POSThttps://cloud-api.calyptia.com/v1/join_project
Authorization
Body
token*string
Example: "redacted"
Response

No Content

Request
const response = await fetch('https://cloud-api.calyptia.com/v1/join_project', {
    method: 'POST',
    headers: {
      "Authorization": "Bearer <token>",
      "Content-Type": "application/json"
    },
    body: JSON.stringify({
      "token": "redacted"
    }),
});
const data = await response.json();