action trashnothing_save_post_location { label: "Save a post location for the current user" description: "Creates or updates a post location for the current user. Updates will happen when the name of the post location matches a previous post location.\n" provider: trashnothing method: PUT path: "/users/me/post-locations" encoding: json output: { type: "array" items: { type: "object" properties: { latitude: { type: "number" } longitude: { type: "number" } name: { type: "string" description: "The location name used when submitting new posts." } } } } }