Skip to main content
GET
/
auto-bidding
/
setups
/
{id}
Get setup details
curl --request GET \
  --url https://api.vollna.com/v1/auto-bidding/setups/{id} \
  --header 'X-API-TOKEN: <api-key>'
{
  "success": true,
  "setup": {
    "id": 123,
    "name": "<string>",
    "status": 123,
    "status_name": "<string>",
    "filter": {
      "id": 123,
      "name": "<string>"
    },
    "bidding_template": {
      "id": 123,
      "name": "<string>",
      "hourly_rate": 123,
      "templates": [
        "<string>"
      ]
    },
    "schedule": "<string>",
    "schedule_label": "<string>",
    "timezone": "<string>",
    "bidding_delay_minutes": 123,
    "daily_proposals_limit": 123,
    "total_proposals_sent": 123,
    "proposals_sent_today": 123,
    "last_run_at": "<string>",
    "last_proposal_date": "<string>",
    "business_manager_id": "<string>",
    "subscription_id": 123,
    "created_at": "<string>",
    "updated_at": "<string>",
    "custom_schedule": {}
  }
}

Authorizations

X-API-TOKEN
string
header
required

API token for authentication

Path Parameters

id
integer
required

The setup ID

Response

Successful operation

success
boolean
setup
object