E-State
  1. marketings
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
          GET
        • show campaign type
          GET
        • campaign-goals
          GET
        • show campaign goals
          GET
        • index
          GET
        • show
          GET
      • Purchase Orders
        • index
        • show
        • raise-budgets
        • show raise-budgets
      • Purchase Requests
        • index
        • show
      • Rental Requests
        • rental-requests
        • show rental-requests
  1. marketings

index

Developing
GET
http://estate.test/api/v1{{url}}/system/marketings
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'http://estate.test/api/v1/system/marketings?search=ma&project_id=1&campaign_type_id=1&campaign_goal_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,
                "project_id": 9,
                "name": "Ms. Robin Mitchell",
                "description": "Nostrum cetera aranea esse.",
                "budget": "dolor",
                "campaign_types_count": 3,
                "campaign_goals_count": 3,
                "project": {
                    "id": 1,
                    "name": "Bespoke Bronze Salad",
                    "code": "f",
                    "status": "curtus",
                    "type": "adfero",
                    "image": "https://outlandish-obedience.us",
                    "start_work_date": "2026-02-15T07:34:27.581Z",
                    "end_work_date": "2024-08-23T10:53:12.448Z"
                }
            },
            {
                "id": 7,
                "project_id": 8,
                "name": "Marty Cassin",
                "description": "Pecco collum contabesco conculco tenax.",
                "budget": "est veniam velit ipsum",
                "campaign_types_count": 0,
                "campaign_goals_count": 1,
                "project": {
                    "id": 0,
                    "name": "Recycled Fresh Chair",
                    "code": "z",
                    "status": "auditor",
                    "type": "aiunt",
                    "image": "https://avaricious-recommendation.net/",
                    "start_work_date": "2024-06-13T15:46:19.181Z",
                    "end_work_date": "2024-12-07T07:07:05.662Z"
                }
            },
            {
                "id": 4,
                "project_id": 3,
                "name": "Benjamin Metz II",
                "description": "Alioqui catena utrimque texo.",
                "budget": "Excepteur commodo eiusmod",
                "campaign_types_count": 7,
                "campaign_goals_count": 0,
                "project": {
                    "id": 1,
                    "name": "Unbranded Rubber Mouse",
                    "code": "H",
                    "status": "vulnus",
                    "type": "compello",
                    "image": "https://rapid-commercial.com",
                    "start_work_date": "2024-06-05T18:26:01.140Z",
                    "end_work_date": "2025-06-04T10:58:06.004Z"
                }
            }
        ],
        "links": {
            "first": "http://estate.test/api/v1/system/marketings?page=1",
            "last": "http://estate.test/api/v1/system/marketings?page=1",
            "prev": null,
            "next": "http://estate.test/api/v1/system/marketings?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/marketings?page=1",
                    "label": "1",
                    "active": true
                },
                {
                    "url": null,
                    "label": "pagination.next",
                    "active": false
                }
            ],
            "path": "http://estate.test/api/v1/system/marketings",
            "per_page": 10,
            "to": null,
            "total": 0
        }
    }
}

Request

Query Params
search
string 
optional
Example:
ma
project_id
string 
optional
Example:
1
campaign_type_id
string 
optional
Example:
1
campaign_goal_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
message
string 
required
response
object 
required
data
array [object {8}] 
required
Modified at 2025-04-15 23:42:29
Previous
show campaign goals
Next
show
Built with