# Get pickups for activity Some activities require selecting a pickup from this endpoint as part of the reservation flow. Endpoint: GET /activities/{activityUuid}/pickups Version: 3.5.0 ## Path parameters: - `activityUuid` (string, required) The UUID of the activity. ## Header parameters: - `X-Musement-Application` (string) A partner's application value, used for analyzing API usage and to identify areas of improvement. - `X-Musement-Version` (string) The API version to use for the request. When absent, the latest version is used by default, however the latest version may not be stable. Partners are encouraged to use the latest stable version: 3.4.0. Example: "3.4.0" ## Response 200 fields (application/json): - `latitude` (number) Example: 39.7191046 - `longitude` (number) Example: 3.4578191 - `name` (string) The name of the pickup location. Example: "Allsun Hotel Lux de Mar" - `place` (string) - `tags` (array) Example: [{"id":"AC5257025","type":"CONTENT-MANAGER-DATA"},{"id":"472","type":"HOTEL-CODE"}] - `tags.id` (string, required) The pickup tag's alphanumeric ID. - `tags.type` (string, required) The type of tag. Enum: "CONTENT-MANAGER-DATA", "HOTEL-CODE", "SUPPLIER" - `type` (string) The type of pickup: * HOTEL: A hotel where customers can wait in the lobby. * PICKUP: A general location. Customers may need to wait outside. Enum: "HOTEL", "PICKUP" - `uuid` (string) The pickup's UUID. Example: "c2326f61-c0d7-4353-8a1f-c1f12c4249f3" ## Response 403 fields (application/json): - `code` (string, required) The internal Musement code for the error. Example: "0" - `message` (string, required) A message with a brief explanation of the error. Example: "You don't have permission to access this resource." ## Response 404 fields (application/json): - `code` (string, required) The internal Musement code for the error. Example: "1400" - `message` (string, required) A message with a brief explanation of the error. Example: "Activity not found." ## Response default fields (application/json): - `code` (string, required) The internal Musement code for the error. Example: "0" - `message` (string, required) A message with a brief explanation of the error. Example: "There was an error"