Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
Response
Successfully created share link
curl --request POST \
--url https://api.anam.ai/v1/share-links \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"personaId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"expiresInHours": 168,
"usageLimit": 10
}'Create a new share link
curl --request POST \
--url https://api.anam.ai/v1/share-links \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"personaId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"expiresInHours": 168,
"usageLimit": 10
}'Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successfully created share link
Was this page helpful?