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

campaign-goals

Developing
GET
http://estate.test/api/v1{{url}}/system/marketings/campaign-goals
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'http://estate.test/api/v1/system/marketings/campaign-goals?search=goa' \
--header 'x-api-key: f482480c-11fe-4426-9f6e-e7d26c8c3eed' \
--header 'x-secret-key: FkSF0PDbMOgLmLlJeMDSDzBFIl5dloAC'
Response Response Example
Success
{
    "status": "true",
    "message": "Operation completed successfully",
    "response": {
        "data": [
            {
                "id": 9,
                "name": "Molly Mann",
                "campaignGoalProgress": null
            },
            {
                "id": 1,
                "name": "Boyd Gutkowski",
                "campaignGoalProgress": null
            }
        ],
        "links": {
            "first": "http://estate.test/api/v1/system/marketings/campaign-goals?page=1",
            "last": "http://estate.test/api/v1/system/marketings/campaign-goals?page=1",
            "prev": null,
            "next": "http://estate.test/api/v1/system/marketings/campaign-goals?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/campaign-goals?page=1",
                    "label": "1",
                    "active": true
                },
                {
                    "url": null,
                    "label": "pagination.next",
                    "active": false
                }
            ],
            "path": "http://estate.test/api/v1/system/marketings/campaign-goals",
            "per_page": 10,
            "to": null,
            "total": 0
        }
    }
}

Request

Query Params
search
string 
optional
Example:
goa
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
Operation completed successfully
response
object 
required
data
array[object (CampaignGoal) {3}] 
required
Modified at 2025-04-15 23:43:18
Previous
show campaign type
Next
show campaign goals
Built with