Network API v3:

- GET Partners

⚠️ Experimental Version

This version of the API is currently in beta and may undergo changes. For production use, please consider using the current stable version (v2).

Returns every sublicensee/partner in the localtunity network that the currently logged in user has access to. This endpoint can show 100 partners at a time, and you may use the "page" parameter to paginate through the results. You can also search partners using the "name" & "domain" parameters. Relevant information can be extracted from each sublicensee.

Example

- Resource URL: https://api.takeoutnearby.com//v3/network/partners

curl -X GET -H "Content-Type: application/json" -H "Authorization: Bearer {access_token}" https://api.takeoutnearby.com/v3/network/partners?page={page}

Headers

Content-Type: (string, required) Must be "application/json"
Authorization: (string, required) Bearer {access_token}

Parameters

page: (integer, optional) The page number to retrieve. Default is 1.
name: (string, optional) The name of the partner to search for.
domain: (string, optional) The domain of the partner to search for.

Response 200 Status Code

                    {"status": "success", "results":[{"id": "6895117","name": "Localtunity","domain": "localtunity.com"},{"...":"repeat for each partner"}]}