The API's main entities allow links to be added to them. Links are not further described URLs to other resources on the web, also meaning they don't come with an alternative text or any kind of sorting. ## Resource ```ts interface Link { id: number; type: "link"; attributes: { url: string; }; } ``` ## Add a link to a resource To add a link to another resource you can send a list of URLs with any `POST` or `PATCH` request to any of the main resource routes. For example to add links to an already existing organizer with the ID `cku5dqtqj00001lgl4w8ga9z6` send a `PATCH` request to `/v1/organizer/cku5dqtqj00001lgl4w8ga9z6` with the following body: ```json { "links": ["https://cool-organizer.com", "https://charity.org"] } ``` > **Important**: this operation is destructive and replaces potentially already existing links, make sure you resend links you want to keep.