action youneedabudget_get_payee_locations_by_payee { label: "List locations for a payee" description: "Returns all payee locations for a specified payee" provider: youneedabudget method: GET path: "/budgets/{budget_id}/payees/{payee_id}/payee_locations" encoding: json input: { type: "object" properties: { budget_id: { type: "string" } payee_id: { type: "string" } } required: ["budget_id", "payee_id"] additionalProperties: false } output: { type: "object" required: ["data"] properties: { data: { type: "object" required: ["payee_locations"] properties: { payee_locations: { type: "array" items: { type: "object" required: ["id", "payee_id", "latitude", "longitude", "deleted"] properties: { deleted: { type: "boolean" description: "Whether or not the payee location has been deleted. Deleted payee locations will only be included in delta requests." } id: { type: "string" format: "uuid" } latitude: { type: "string" } longitude: { type: "string" } payee_id: { type: "string" format: "uuid" } } } } } } } } }