Query parameters

  • page integer(int32)
  • size integer(int32)

Responses

  • 200 */*

    OK

    Hide response attributes Show response attributes object
    • status string
    • code integer(int32)
    • message string
    • data array[object]
      Hide data attributes Show data attributes object
      • profile object
        Hide profile attributes Show profile attributes object
        • id string(uuid)
        • category string
        • image string
        • gender string
        • status string
        • avatar string
        • certificate string
        • rating number(double)
        • more object
          Hide more attributes Show more attributes object
          • last_signed_in string
          • number_of_rating integer(int32)
          • number_of_shops integer(int32)
          • total_service_trips integer(int32)
          • total_shared integer(int32)
        • specializations array[object]
          Hide specializations attributes Show specializations attributes object
          • id integer(int64)
          • special string
          • category string
          • image string
          • avatar string
        • first_name string
        • last_name string
        • email_address string
        • phone_info object
          Hide phone_info attributes Show phone_info attributes object
          • phone_number string
          • country_code string
          • iso_code string
          • country string
        • verification_status string

          Values are REQUESTED, VERIFIED, NOT_VERIFIED, NONE, or ERROR.

        • business_information object
          Hide business_information attributes Show business_information attributes object
          • name string
          • description string
          • address string
      • chart array[object]
        Hide chart attributes Show chart attributes object
        • month string
        • average number(double)
        • total number(double)
        • bad number(double)
        • good number(double)
      • good array[object]
        Hide good attributes Show good attributes object
        • name string
        • rating number(double)
        • comment string
        • category string
        • image string
      • bad array[object]
        Hide bad attributes Show bad attributes object
        • name string
        • rating number(double)
        • comment string
        • category string
        • image string
      • verified boolean
      • status string

        Values are SUSPENDED, ACTIVE, DEACTIVATED, BUSINESS_DEACTIVATED, DELETED, BUSINESS_DELETED, or HAS_REPORTED_ISSUES.

GET /business/associate/all
curl \
 --request GET 'https://sandbox.serchservice.com/api/v1/business/associate/all' \
 --header "X-Serch-Signed: $API_KEY" \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "X-Serch-Drive-Api-Key: $API_KEY" \
 --header "X-Serch-Drive-Secret-Key: $API_KEY" \
 --header "X-Serch-Guest-Api-Key: $API_KEY" \
 --header "X-Serch-Guest-Secret-Key: $API_KEY"
Response examples (200)
{
  "status": "100 CONTINUE",
  "code": 42,
  "message": "string",
  "data": [
    {
      "profile": {
        "id": "string",
        "category": "string",
        "image": "string",
        "gender": "string",
        "status": "string",
        "avatar": "string",
        "certificate": "string",
        "rating": 42.0,
        "more": {
          "last_signed_in": "string",
          "number_of_rating": 42,
          "number_of_shops": 42,
          "total_service_trips": 42,
          "total_shared": 42
        },
        "specializations": [
          {
            "id": 42,
            "special": "string",
            "category": "string",
            "image": "string",
            "avatar": "string"
          }
        ],
        "first_name": "string",
        "last_name": "string",
        "email_address": "string",
        "phone_info": {
          "phone_number": "string",
          "country_code": "string",
          "iso_code": "string",
          "country": "string"
        },
        "verification_status": "REQUESTED",
        "business_information": {
          "name": "string",
          "description": "string",
          "address": "string",
          "logo": "string"
        }
      },
      "chart": [
        {
          "month": "string",
          "average": 42.0,
          "total": 42.0,
          "bad": 42.0,
          "good": 42.0
        }
      ],
      "good": [
        {
          "name": "string",
          "rating": 42.0,
          "comment": "string",
          "category": "string",
          "image": "string"
        }
      ],
      "bad": [
        {
          "name": "string",
          "rating": 42.0,
          "comment": "string",
          "category": "string",
          "image": "string"
        }
      ],
      "verified": true,
      "status": "SUSPENDED"
    }
  ]
}