E-State
  1. Purchase Orders
E-State
  • Prepare Api
  • E-state
    • Client
      • Attention Requests
        • index
        • store
        • show
      • 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
          GET
        • show
          GET
        • raise-budgets
          GET
        • show raise-budgets
          GET
      • Purchase Requests
        • index
        • show
      • Rental Requests
        • rental-requests
        • show rental-requests
  1. Purchase Orders

index

Developing
GET
http://estate.test/api/v1{{url}}/system/purchase-orders
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'http://estate.test/api/v1/system/purchase-orders?search=pr&project_id=1&status_id=rejected&user_id=1&created_at=2025-04-06' \
--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": 6,
                "title": "conjecture opera considering ack hairy when kindheartedly round psst",
                "payment_terms": "officia mollit",
                "supplying_duration": "dolore",
                "note": "Vinitor voluptatum acer adulatio usque veritas varius iure velut alias.",
                "status": "id in incididunt",
                "total": 1,
                "purchaseRequestOffer": {
                    "id": 3,
                    "status": "voluptate velit",
                    "description": "Adsidue cura saepe adamo capitulus.",
                    "offer_number": 6,
                    "total": 3
                },
                "purchaseRequest": {
                    "id": 0,
                    "from_user_id": 8,
                    "project_id": 7,
                    "title": "supposing above unfit boohoo exterior hydrolyse whoa disloyal",
                    "status": "ex pariatur"
                },
                "supplier": {
                    "id": 3,
                    "name": "Mr. Owen Shields",
                    "email": "Karlie63@yahoo.com",
                    "phone": 395,
                    "job_title": "CV\"M.1Wr7;",
                    "id_number": 4
                }
            },
            {
                "id": 0,
                "title": "furthermore incinerate orange embarrassment considering carelessly",
                "payment_terms": "ea id anim",
                "supplying_duration": "magna",
                "note": "Tertius atrocitas claro acer.",
                "status": "ad laborum id sed",
                "total": 3,
                "purchaseRequestOffer": {
                    "id": 4,
                    "status": "dolor id exercitation",
                    "description": "Nostrum clam debeo.",
                    "offer_number": 1,
                    "total": 0
                },
                "purchaseRequest": {
                    "id": 0,
                    "from_user_id": 8,
                    "project_id": 4,
                    "title": "upside-down painfully aw boohoo blah",
                    "status": "aute pariatur dolor elit ad"
                },
                "supplier": {
                    "id": 0,
                    "name": "Miss Tracy Spinka II",
                    "email": "Milford_Boyer88@gmail.com",
                    "phone": 975,
                    "job_title": "m=]h*_vtY3",
                    "id_number": 7
                }
            },
            {
                "id": 0,
                "title": "gulp ugh nauseate for",
                "payment_terms": "id",
                "supplying_duration": "nisi anim",
                "note": "Distinctio aestus acervus crapula calco velut thesis veritas.",
                "status": "ipsum laborum ut Excepteur consequat",
                "total": 9,
                "purchaseRequestOffer": {
                    "id": 2,
                    "status": "est id cupidatat elit consectetur",
                    "description": "Tabula amplitudo acervus adfectus animadverto compono.",
                    "offer_number": 3,
                    "total": 2
                },
                "purchaseRequest": {
                    "id": 8,
                    "from_user_id": 2,
                    "project_id": 0,
                    "title": "oh circa recommendation roughly supposing yuck blah meal cross",
                    "status": "exercitation"
                },
                "supplier": {
                    "id": 1,
                    "name": "Kent Nicolas",
                    "email": "Jovan.Padberg@gmail.com",
                    "phone": 1,
                    "job_title": "8Jf\\EDB3I:",
                    "id_number": 7
                }
            }
        ],
        "links": {
            "first": "http://estate.test/api/v1/system/purchase-orders?page=1",
            "last": "http://estate.test/api/v1/system/purchase-orders?page=1",
            "prev": null,
            "next": "http://estate.test/api/v1/system/purchase-orders?page=3"
        },
        "meta": {
            "current_page": 1,
            "from": null,
            "last_page": 1,
            "links": [
                {
                    "url": null,
                    "label": "pagination.previous",
                    "active": false
                },
                {
                    "url": "http://estate.test/api/v1/system/purchase-orders?page=1",
                    "label": "1",
                    "active": true
                },
                {
                    "url": null,
                    "label": "pagination.next",
                    "active": false
                }
            ],
            "path": "http://estate.test/api/v1/system/purchase-orders",
            "per_page": 10,
            "to": null,
            "total": 0
        }
    }
}

Request

Query Params
search
string 
optional
Example:
pr
project_id
string 
optional
Example:
1
status_id
string 
optional
Example:
rejected
user_id
string 
optional
Example:
1
created_at
string 
optional
Example:
2025-04-06
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
status
message
string 
required
response
object 
required
data
array [object {10}] 
required
Modified at 2025-04-15 23:49:06
Previous
show
Next
show
Built with