action youneedabudget_get_payee_location_by_id { label: "Single payee location" description: "Returns a single payee location" provider: youneedabudget method: GET path: "/budgets/{budget_id}/payee_locations/{payee_location_id}" encoding: json input: { type: "object" properties: { budget_id: { type: "string" } payee_location_id: { type: "string" } } required: ["budget_id", "payee_location_id"] additionalProperties: false } output: { type: "object" required: ["data"] properties: { data: { type: "object" required: ["payee_location"] properties: { payee_location: { type: "object" required: ["deleted", "id", "latitude", "longitude", "payee_id"] 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" } } } } } } } }