Requests
The Found Hero API allows you to programmatically manage your requests. A location is a lost item request where a guest claim that he lost an item in a specific location
Available requests status
Retrieve a Request
GET
https://api.joinfoundhero.com/v1/locations/:lid/requests/:id
Retrieves the details of a request that has previously been created. Supply lid
that is the unique ID of location and id
that is the id of the request
Path Parameters
Retrieve all requests
GET
https://api.joinfoundhero.com/v1/locations/:lid/requests
Retrieve all requests created previously. By default, this method returns a set of top 10 requests.
This method also supports pagination. You can use limit
and page
query parameters to control pagination.
Path Parameters
Query Parameters
Update Request Status
PUT
https://api.joinfoundhero.com/v1/locations/:lid/requests/:id/update-status
Using this endpoint you can accept/reject a request by sending a body parameters type
.
Path Parameters
Request Body
Create new lost item request
POST
https://api.joinfoundhero.com/v1/locations/:lid/requests
Path Parameters
Request Body
Last updated