action trashnothing_get_post_locations { label: "List current users' post locations" description: "Only the most recent 3 post locations are returned." provider: trashnothing method: GET 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." } } } } }