Skip to main content

Create a feature link

POST 

<your-unleash-url>/api/admin/projects/:projectId/features/:featureName/link

Create a new link for a feature.

Request

Path Parameters

    projectId stringrequired
    featureName stringrequired

Bodyrequired

featureLinkSchema

    urlstringrequired

    The URL the feature is linked to

    Example: https://github.com/search?q=cleanupReminder&type=code
    titlestringnullable

    The description of the link

    Example: Github cleanup

Responses

This response has no body.

Authorization: Authorization

name: Authorizationtype: apiKeyin: headerdescription: API key needed to access this API
curl -L '<your-unleash-url>/api/admin/projects/:projectId/features/:featureName/link' \
-H 'Content-Type: application/json' \
-H 'Authorization: <Authorization>' \
-d '{
"url": "https://github.com/search?q=cleanupReminder&type=code",
"title": "Github cleanup"
}'
Request Collapse all
Base URL
<your-unleash-url>
Auth
Parameters
— pathrequired
— pathrequired
Body required
{
  "url": "https://github.com/search?q=cleanupReminder&type=code",
  "title": "Github cleanup"
}
ResponseClear

Click the Send API Request button above and see the response here!