Skip to main content
GET
/
v1
/
offboarding-checklist
/
member
/
{memberId}
Get a member's offboarding checklist
curl --request GET \
  --url https://api.trycomp.ai/v1/offboarding-checklist/member/{memberId} \
  --header 'X-API-Key: <api-key>'
const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};

fetch('https://api.trycomp.ai/v1/offboarding-checklist/member/{memberId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
import requests

url = "https://api.trycomp.ai/v1/offboarding-checklist/member/{memberId}"

headers = {"X-API-Key": "<api-key>"}

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

print(response.text)

Authorizations

X-API-Key
string
header
required

API key for authentication

Path Parameters

memberId
string
required

Response

200 - undefined