curl --request GET \
--url https://prod.featherhq.com/api/v1/agent/version/{versionId}/share \
--header 'Authorization: Bearer <token>'{
"share": {
"id": "<string>",
"shareToken": "<string>",
"agentVersionId": "<string>",
"secondsLimit": 123,
"secondsUsed": 123,
"createdAt": "<string>"
}
}Get the shareable link for a specific agent version (only one per version)
curl --request GET \
--url https://prod.featherhq.com/api/v1/agent/version/{versionId}/share \
--header 'Authorization: Bearer <token>'{
"share": {
"id": "<string>",
"shareToken": "<string>",
"agentVersionId": "<string>",
"secondsLimit": 123,
"secondsUsed": 123,
"createdAt": "<string>"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.