Auth.Add Product Link
auth.add_product_linkAssociate an affiliate link with a product in your Affilio catalog.
This is how you connect an affiliate URL to a product so it appears in storefront listings and can be tracked per-product. A single product can have multiple links — one per country, platform, or affiliate network.
Typical workflow:
auth.create_link(url=) → get link_id
auth.create_product(name=...) → get product_id
auth.add_product_link(product_id=..., link_id=...) → link attached
Requires Bearer token authentication.
Returns an auth_error envelope if authentication fails.
Technical reference: https://affilio.link/blog/mcp-for-everyone
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| link_id | Yes | Link ID returned by auth.create_link. | |
| product_id | Yes | Product ID returned by auth.create_product or auth.get_product. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||