action twitter_users_id_unfollow { label: "Unfollow User" description: "Causes the source User to unfollow the target User. The source User must match the User context authorizing the request" provider: twitter method: DELETE path: "/2/users/{source_user_id}/following/{target_user_id}" encoding: json input: { type: "object" properties: { source_user_id: { type: "string" description: "Unique identifier of this User. The value must be the same as the authenticated user." } target_user_id: { type: "string" description: "Unique identifier of this User. This is returned as a string in order to avoid complications with languages and tools that cannot handle large integers." } } required: ["source_user_id", "target_user_id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "object" properties: { following: { type: "boolean" } } } errors: { type: "array" items: { type: "object" description: "An HTTP Problem Details object, as defined in IETF RFC 7807 (https://tools.ietf.org/html/rfc7807)." required: ["type", "title"] properties: { detail: { type: "string" } status: { type: "integer" } title: { type: "string" } type: { type: "string" } } } } } } }