E-State
  1. Attention Requests
E-State
  • Prepare Api
  • E-state
    • Client
      • Attention Requests
        • index
          GET
        • store
          POST
        • show
          GET
      • Auth
        • profile
        • logout
        • register
        • login
      • Units
        • index
        • show
        • units client
      • Sales
        • index
        • show
    • System
      • Projects
        • index
        • show
      • Units
        • index
        • show units by project
        • show
      • Sales
        • SaleRefund
          • index
          • show
        • index
        • show
      • Attention Requests
        • index
        • show
      • Clients
        • index
        • show
      • Discounts
        • index
        • show
      • Lands
        • owners
        • index
        • show
        • show land owner
      • marketings
        • campaign-types
        • show campaign type
        • campaign-goals
        • show campaign goals
        • index
        • show
      • Purchase Orders
        • index
        • show
        • raise-budgets
        • show raise-budgets
      • Purchase Requests
        • index
        • show
      • Rental Requests
        • rental-requests
        • show rental-requests
  1. Attention Requests

index

Developing
GET
http://estate.test/api/v1{{url}}/client/attention-requests
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'http://estate.test/api/v1/client/attention-requests?search=greater_than_1200000&payment_method[]=bank&reason_for_buy[]=leasing&has_kitchen=1&has_toilet_elderly=1&created_at=2025-04-08' \
--header 'x-api-key: f482480c-11fe-4426-9f6e-e7d26c8c3eed' \
--header 'x-secret-key: FkSF0PDbMOgLmLlJeMDSDzBFIl5dloAC'
Response Response Example
{
    "status": "true",
    "message": "Operation completed successfully",
    "response": {
        "data": [
            {
                "id": 1,
                "client_id": 7,
                "reason_for_buy": "sit et esse",
                "payment_method": "dolore ut sunt consectetur nostrud",
                "price_range": "74.55",
                "project_size_range": "ipsum adipisicing ea commodo",
                "unit_size_range": "et dolor pariatur",
                "bedroom_count": "Ut veniam anim Excepteur",
                "has_toilet_elderly": "anim",
                "has_kitchen": "consequat",
                "note": "Amiculum timor sophismata audio turpis solum sperno damnatio.",
                "platform": "esse",
                "client": {
                    "id": 7,
                    "name": "Pablo MacGyver",
                    "phone": "567-427-5929",
                    "email": "Bryce26@gmail.com"
                }
            },
            {
                "id": 3,
                "client_id": 7,
                "reason_for_buy": "Ut elit voluptate sed est",
                "payment_method": "Duis",
                "price_range": "436.25",
                "project_size_range": "culpa veniam nostrud aute",
                "unit_size_range": "eiusmod",
                "bedroom_count": "aliqua dolor veniam eiusmod",
                "has_toilet_elderly": "magna cillum velit",
                "has_kitchen": "et deserunt esse culpa nostrud",
                "note": "Avarus celer succedo est eveniet barba ascit damnatio.",
                "platform": "consequat ex",
                "client": {
                    "id": 2,
                    "name": "Lena Haley",
                    "phone": "727.987.2613 x0596",
                    "email": "Golda.OConnell@gmail.com"
                }
            },
            {
                "id": 2,
                "client_id": 2,
                "reason_for_buy": "eu",
                "payment_method": "consequat ut sint amet",
                "price_range": "911.39",
                "project_size_range": "ea",
                "unit_size_range": "ut dolor aute",
                "bedroom_count": "mollit fugiat",
                "has_toilet_elderly": "occaecat dolor",
                "has_kitchen": "nostrud",
                "note": "Quod id pariatur viduo careo dolorem aureus.",
                "platform": "labore",
                "client": {
                    "id": 2,
                    "name": "Nadine Kutch",
                    "phone": "665.200.8137 x55612",
                    "email": "Maximo.Schamberger@hotmail.com"
                }
            }
        ],
        "links": {
            "first": "http://estate.test/api/v1/client/attention-requests?page=1",
            "last": "http://estate.test/api/v1/client/attention-requests?page=1",
            "prev": null,
            "next": null
        },
        "meta": {
            "current_page": 1,
            "from": null,
            "last_page": 1,
            "links": [
                {
                    "url": null,
                    "label": "pagination.previous",
                    "active": false
                },
                {
                    "url": "http://estate.test/api/v1/client/attention-requests?page=1",
                    "label": "1",
                    "active": true
                },
                {
                    "url": null,
                    "label": "pagination.next",
                    "active": false
                }
            ],
            "path": "http://estate.test/api/v1/client/attention-requests",
            "per_page": 10,
            "to": null,
            "total": 0
        }
    }
}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params
search
string 
optional
Example:
greater_than_1200000
payment_method[]
string 
optional
Example:
bank
reason_for_buy[]
string 
optional
Example:
leasing
has_kitchen
string 
optional
Example:
1
has_toilet_elderly
string 
optional
Example:
1
created_at
string 
optional
Example:
2025-04-08
Header Params
x-api-key
string 
optional
Example:
{{x-api-key}}
x-secret-key
string 
optional
Example:
{{x-secret-key}}

Responses

🟢200Success
application/json
Body
status
string 
required
message
string 
required
response
object 
required
data
array[object (AttentionRequest ) {17}] 
required
Modified at 2025-04-16 00:01:47
Previous
Prepare Api
Next
store
Built with