Saltar al contenido principal
POST
/
v1
/
invitation
/
join-company
/
{invitation_id}
Join Company
import requests

url = "http://localhost:3000/v1/invitation/join-company/{invitation_id}"

headers = {"Authorization": "Bearer <token>"}

response = requests.post(url, headers=headers)

print(response.text)
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

invitation_id
string<uuid>
required

Response

Successful Response