action instagram_post_users_user_id_relationship { label: "Modify the relationship between the current user and the target user." description: "Modify the relationship between the current user and the target user." provider: instagram method: POST path: "/users/{user-id}/relationship" encoding: json input: { type: "object" properties: { action: { type: "string" } "user-id": { type: "string" } } required: ["action", "user-id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }