import requests
url = "http://localhost:3000/v1/invitation/set-all-registered"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)Endpoint to set the registered status of all invitations for a profile to True.
import requests
url = "http://localhost:3000/v1/invitation/set-all-registered"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful Response