action stackexchange_get_me_write_permissions { label: "get_me_write_permissions" description: "Returns the write permissions a user has via the api, given an access token.\n \nThe Stack Exchange API gives users the ability to create, edit, and delete certain types. This method returns whether the passed user is capable of performing those actions at all, as well as how many times a day they can.\n \nThis method does not consider the user's current quota (ie. if they've already exhausted it for today) nor any additional restrictions on write access, such as editing deleted comments.\n \nThis method returns a list of write_permissions.\n" provider: stackexchange method: GET path: "/me/write-permissions" encoding: json input: { type: "object" properties: { callback: { type: "string" } filter: { type: "string" } page: { type: "integer" } pagesize: { type: "integer" } site: { type: "string" } } required: ["site"] additionalProperties: false } output: { type: "object" additionalProperties: true } }