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

store

Developing
POST
http://estate.test/api/v1{{url}}/client/attention-requests
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request POST 'http://estate.test/api/v1/client/attention-requests' \
--header 'x-api-key: f482480c-11fe-4426-9f6e-e7d26c8c3eed' \
--header 'x-secret-key: FkSF0PDbMOgLmLlJeMDSDzBFIl5dloAC' \
--header 'Content-Type: application/json' \
--data-raw '{}'
Response Response Example
200 - Success
{
    "status": "true",
    "message": "Operation completed successfully",
    "data": {
        "id": 1,
        "client_id": 4,
        "reason_for_buy": "qui commodo dolore amet",
        "payment_method": "cillum",
        "price_range": "625.19",
        "project_size_range": "qui cillum aliquip esse et",
        "unit_size_range": "sunt ipsum in ut Duis",
        "bedroom_count": "Ut ad aute consectetur",
        "has_toilet_elderly": "dolore",
        "has_kitchen": "dolore velit",
        "note": "Rerum molestiae aptus pariatur clamo casus voluptatibus caste.",
        "platform": "id proident in occaecat",
        "client": {
            "id": 3,
            "name": "Wallace Hintz",
            "phone": "522-491-0198 x363",
            "email": "Breana_Turcotte54@yahoo.com"
        },
        "options": [
            {
                "id": 9,
                "type": "et exercitation in tempor",
                "name": "Hugh Lang",
                "is_active": false
            },
            {
                "id": 4,
                "type": "commodo irure aliquip",
                "name": "Marsha Powlowski",
                "is_active": false
            }
        ],
        "projects": [
            {
                "id": 4,
                "name": "Recycled Frozen Table",
                "code": "J",
                "status": "conqueror",
                "type": "cui",
                "image": "https://beneficial-fun.name",
                "start_work_date": "2024-10-13T20:35:27.267Z",
                "end_work_date": "2025-02-17T12:51:05.369Z"
            }
        ],
        "units": [
            {
                "id": 2,
                "building_id": 1,
                "project_id": 5,
                "is_for_rent": true,
                "name": "Jeanette Hintz",
                "status": "eiusmod",
                "floor": "veniam",
                "room_count": 8,
                "bathroom_count": 8
            },
            {
                "id": 4,
                "building_id": 1,
                "project_id": 7,
                "is_for_rent": true,
                "name": "Enrique Jacobi",
                "status": "occaecat nisi cupidatat",
                "floor": "reprehenderit",
                "room_count": 4,
                "bathroom_count": 2
            }
        ],
        "buildings": [
            {
                "id": 7,
                "name": "Hazel Kozey PhD",
                "project_id": 1,
                "type": "a",
                "land_area": "sollicito",
                "tax_value": 8,
                "price_after_tax": 61
            }
        ]
    }
}

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}}
Body Params application/json
object {0}
Examples

Responses

🟢200Success
application/json
Body
status
string 
required
status
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
🟠422Parameter Error
Modified at 2025-04-17 21:05:16
Previous
index
Next
show
Built with