curl --request GET \
--url https://api.partoo.co/v2/org/search \
--header 'x-APIKey: <api-key>'{
"page": 1,
"max_page": 10,
"count": 287,
"orgs": [
{
"org_id": 42,
"name": "Fast Retailer",
"alias": "fast_retailer",
"provider": "partoo",
"type": "small_medium_business",
"features": [
"business_edition",
"diffusion",
"review_management",
"review_invite",
"messages"
],
"org_features": [
"business_edition",
"diffusion",
"review_management",
"review_invite",
"messages",
"review_ai_suggestion"
],
"last_org_api_call": "05-11-2021",
"max_businesses": 100
}
]
}This endpoint lets you search for organizations using filters. The response is paginated (30 results per page).
curl --request GET \
--url https://api.partoo.co/v2/org/search \
--header 'x-APIKey: <api-key>'{
"page": 1,
"max_page": 10,
"count": 287,
"orgs": [
{
"org_id": 42,
"name": "Fast Retailer",
"alias": "fast_retailer",
"provider": "partoo",
"type": "small_medium_business",
"features": [
"business_edition",
"diffusion",
"review_management",
"review_invite",
"messages"
],
"org_features": [
"business_edition",
"diffusion",
"review_management",
"review_invite",
"messages",
"review_ai_suggestion"
],
"last_org_api_call": "05-11-2021",
"max_businesses": 100
}
]
}The authentication system on Partoo API is using API Key that should be put in the header of the request (the name of the header is x-APIKey). An api_key is linked to a user. This user's role will give you different access level to the API features.
Organization id
Parameter to fuzzy search organizations on name or id
Parameter to search an organization by its alias
Page number. 30 results per page
Number of items to return per page. Currently limited to 100.
1 <= x <= 100OK
Result object return by the API
Current page number
1
Last page number
10
Number of resources complying with filters
287
The organizations complying with filter (30 max per page)
Show child attributes
Organization id
42
Organization name
"Fast Retailer"
Organization alias (should match regex [a-z0-9_])
"fast_retailer"
Organization provider
"partoo"
Organization type
small_medium_business, enterprise List of organization's available features. Contains the features the organization can subscribe to as well as the ones only some businesses may have subscribed to additionally.
Business feature name
diffusion, feedback_management, messages, posts, review_invite, review_management [
"business_edition",
"diffusion",
"review_management",
"review_invite",
"messages"
]List of organization's features. Only contains the features the organization has subscribed to.
Business feature name
diffusion, feedback_management, messages, posts, review_invite, review_management [
"business_edition",
"diffusion",
"review_management",
"review_invite",
"messages",
"review_ai_suggestion"
]Date of the last API call made with one of the API keys linked to the organization
"05-11-2021"
Maximum number of local businesses the organization can have. It does not include the global (brand) businesses. If null, there is no limit for the organization. This field can only be set by a provider.
100
Was this page helpful?