sangraha
    sangraha
    • 🐶 Walk through Apidog
    • orders_data
      GET
    • login_user
      POST
    • user_registration
      POST
    • make_order
      POST
    • single_order_data
      GET
    • change_order_status
      POST
    • get_order_cart
      GET
    • get_all_societies
      GET
    • add_society_to_business
      POST
    • remove_society_from_business
      POST
    • subscription_status
      GET
    • get_indian_states
      GET
    • get_cities_by_state_id
      GET
    • get_society_member
      GET
    • get_all_society_members
      GET
    • society_register_member
      POST
    • society_edit_member
      POST
    • remove_society_member
      POST
    • society_suggestion
      POST

      get_all_society_members

      GET
      /api/members/allmembersdata/

      Get All Members Data#

      This endpoint retrieves data for all members based on the provided parameters.

      Request#

      Method: GET
      URL: api/members/allmembersdata/1/3/

      Response#

      The response for this request can be represented as a JSON schema:
      {
          "type": "object",
          "properties": {
              "status": {
                  "type": "boolean"
              },
              "message": {
                  "type": "string"
              },
              "data": {
                  "type": "object",
                  "properties": {
                      "members": {
                          "type": "array",
                          "items": {
                              "type": "object",
                              "properties": {
                                  "id": {
                                      "type": "string"
                                  },
                                  "userid": {
                                      "type": "string"
                                  },
                                  "username": {
                                      "type": "string"
                                  },
                                  "societyid": {
                                      "type": "string"
                                  },
                                  "cityname": {
                                      "type": "string"
                                  },
                                  "statename": {
                                      "type": "string"
                                  },
                                  "useraddress": {
                                      "type": "string"
                                  },
                                  "userphone": {
                                      "type": "string"
                                  },
                                  "societyaddress": {
                                      "type": "string"
                                  }
                              }
                          }
                      }
                  }
              }
          }
      }
      

      Request

      Authorization
      Add parameter in header
      Example:
      X-Token: ********************
      Query Params
      bizid
      string 
      required
      business id (required)
      Example:
      1
      societyid
      string 
      required
      society id (required)
      Example:
      3
      limit
      string 
      required
      row limit (optional)
      Example:
      20
      offset
      string 
      required
      row offset (optional)
      Example:
      0
      order
      string 
      required
      row order (desc/asc) (optional)
      Example:
      desc
      Header Params
      marchant-id
      string 
      required
      Example:
      BIZ12354124
      Body Params application/json
      societyid
      string 
      required
      bizid
      string 
      required
      Example
      {
      	"societyid": "15",
      	"bizid": "1"
      }

      Request samples

      Shell
      JavaScript
      Java
      Swift
      Go
      PHP
      Python
      HTTP
      C
      C#
      Objective-C
      Ruby
      OCaml
      Dart
      R
      Request Request Example
      Shell
      JavaScript
      Java
      Swift
      curl --location --request GET '/api/members/allmembersdata/?bizid=1&societyid=3&limit=20&offset=0&order=desc' \
      --header 'marchant-id: BIZ12354124' \
      --header 'Content-Type: application/json' \
      --data-raw '{
      	"societyid": "15",
      	"bizid": "1"
      }'

      Responses

      🟢200Success
      application/json
      Body
      object {0}
      Example
      {}
      Previous
      get_society_member
      Next
      society_register_member
      Built with