action mastodon_get_api_v1_accounts_relationships { label: "get_api_v1_accounts_relationships" description: "Sets a private note on a user." provider: mastodon method: GET path: "/api/v1/accounts/relationships" encoding: json input: { type: "object" properties: { id: { type: "array" items: { type: "string" } } } required: ["id"] additionalProperties: false } output: { type: "array" items: { description: "Represents the relationship between accounts, such as following / blocking / muting / etc." required: ["id", "following", "requested", "endorsed", "followed_by", "muting", "muting_notifications", "showing_reblogs", "notifying", "blocking", "domain_blocking", "blocked_by", "note"] properties: { blocked_by: { type: "boolean" description: "Is this user blocking you?" } blocking: { type: "boolean" description: "Are you blocking this user?" } domain_blocking: { type: "boolean" description: "Are you blocking this user's domain?" } endorsed: { type: "boolean" description: "Are you featuring this user on your profile?" } followed_by: { type: "boolean" description: "Are you followed by this user?" } following: { type: "boolean" description: "Are you following this user?" } id: { type: "string" description: "The account id. Cast from an integer, but not guaranteed to be a number." } muting: { type: "boolean" description: "Are you muting this user?" } muting_notifications: { type: "boolean" description: "Are you muting notifications from this user?" } note: { type: "string" description: "This user's profile bio" } notifying: { type: "boolean" description: "Have you enabled notifications for this user?" } requested: { type: "boolean" description: "Do you have a pending follow request for this user?" } showing_reblogs: { type: "boolean" description: "Are you receiving this user's boosts in your home timeline?" } } } } }