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

show

Developing
GET
http://estate.test/api/v1{{url}}/client/attention-requests/3
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'http://estate.test/api/v1/client/attention-requests/3' \
--header 'x-api-key: f482480c-11fe-4426-9f6e-e7d26c8c3eed' \
--header 'x-secret-key: FkSF0PDbMOgLmLlJeMDSDzBFIl5dloAC'
Response Response Example
{
    "status": "true",
    "message": "Operation completed successfully",
    "data": {
        "id": 8,
        "client_id": 5,
        "reason_for_buy": "magna occaecat dolor qui minim",
        "payment_method": "irure culpa sunt Ut",
        "price_range": "218.25",
        "project_size_range": "in consequat",
        "unit_size_range": "est",
        "bedroom_count": "ullamco veniam proident",
        "has_toilet_elderly": "dolor et commodo veniam Ut",
        "has_kitchen": "pariatur adipisicing enim mollit exercitation",
        "note": "Canonicus quaerat adiuvo degusto atque velit.",
        "platform": "nisi aliquip voluptate tempor",
        "client": {
            "id": 3,
            "name": "Sergio Cummings",
            "phone": "(406) 387-0632",
            "email": "Eudora.Lang-McLaughlin@yahoo.com"
        },
        "options": [
            {
                "id": 2,
                "type": "aliqua non laborum",
                "name": "Karl Gerlach",
                "is_active": false
            },
            {
                "id": 4,
                "type": "in velit Excepteur",
                "name": "Crystal Batz",
                "is_active": true
            }
        ],
        "projects": [
            {
                "id": 3,
                "name": "Unbranded Concrete Mouse",
                "code": "L",
                "status": "quos",
                "type": "altus",
                "image": "https://wee-advertisement.com",
                "start_work_date": "2025-02-08T03:14:15.616Z",
                "end_work_date": "2025-06-18T08:20:37.025Z"
            },
            {
                "id": 5,
                "name": "Incredible Cotton Keyboard",
                "code": "V",
                "status": "adversus",
                "type": "eligendi",
                "image": "https://ill-fated-earth.biz",
                "start_work_date": "2025-06-03T14:44:06.003Z",
                "end_work_date": "2024-10-26T02:04:23.958Z"
            }
        ],
        "units": [
            {
                "id": 8,
                "building_id": 6,
                "project_id": 4,
                "is_for_rent": true,
                "name": "Mrs. Rhonda Smith",
                "status": "magna sunt cupidatat",
                "floor": "fugiat nostrud ipsum magna ullamco",
                "room_count": 7,
                "bathroom_count": 0
            },
            {
                "id": 6,
                "building_id": 9,
                "project_id": 0,
                "is_for_rent": false,
                "name": "Albert Robel",
                "status": "elit aliquip",
                "floor": "fugiat",
                "room_count": 2,
                "bathroom_count": 3
            }
        ],
        "buildings": [
            {
                "id": 4,
                "name": "Ellen Torphy",
                "project_id": 1,
                "type": "X",
                "land_area": "amo",
                "tax_value": 4,
                "price_after_tax": 494
            },
            {
                "id": 1,
                "name": "Woodrow Brown",
                "project_id": 2,
                "type": "H",
                "land_area": "coma",
                "tax_value": 5,
                "price_after_tax": 186
            }
        ]
    }
}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
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
data
object (AttentionRequest ) 
required
id
number 
required
ID
client_id
number 
required
reason_for_buy
string 
required
payment_method
string 
required
price_range
string 
required
project_size_range
string 
required
unit_size_range
string 
required
bedroom_count
string 
required
has_toilet_elderly
string 
required
has_kitchen
string 
required
note
string 
required
platform
string 
required
client
object (Client Simple) 
required
options
array[object (Option) {4}] 
required
projects
array[object (Project Simple) {8}] 
required
units
array[object (Unit Simple) {9}] 
required
buildings
array[object (Building Simple) {7}] 
required
Modified at 2025-04-16 08:46:52
Previous
store
Next
profile
Built with