Create Access Link
- MCP tool
- create_project_access_linkCreate Project Access Link
- Rate limit
- Tier 3
- Scope
- access-links:write
- Project role
- OwnerManager
Creates an access link for a project.
Example
bash
curl -X POST 'https://api.youvico.com/api/projects/bdbff5de-96d7-468f-9db0-85fe28bd6b62/access-links' \
-H 'Authorization: Bearer YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{ "role": "PROJECT_REVIEWER", "description": "Client review" }'json
{
"data": {
"id": "5e0c7a92-1d4b-4f3a-8c6e-2b9d0f1a7e34"
}
}Request
Path
idstringrequired Project ID
Body
rolestringrequired Project role granted by the link
Possible values: PROJECT_MEMBERPROJECT_REVIEWERPROJECT_RESTRICTED_REVIEWER
Example: PROJECT_REVIEWER
descriptionstringMaximum 250 characters
Access link description
Example: Client review
Response
Returns 201 Created.
dataobject Created access link
data.idstring ID of the created access link
Example: 5e0c7a92-1d4b-4f3a-8c6e-2b9d0f1a7e34