# New endpoint: Retreive Campaign Details by UUID

**Effective from:** 7 July 2025

***

### What’s new?

We’ve introduced a new endpoint to the Operator API that allows operators to retrieve the full details of a specific Freebet Campaign using its unique identifier (UUID) -  [Get Campaign by UUID endpoint](/developer-docs/operator-api-reference/freebets-api.md#get-a-campaign-by-uuid).

### **Endpoint  structure**

Base URL:  `POST /operator/generic/v2/freebet/campaigns/info`

This addition provides enhanced visibility into campaign configurations, enabling systems to fetch detailed campaign data directly by referencing the campaign UUID.

### How it works?

To retrieve campaign details, submit the following JSON as request payload to [Get Campaign by UUID endpoint](/developer-docs/operator-api-reference/freebets-api.md#get-a-campaign-by-uuid):&#x20;

```json
{
    "campaign_uuid": "007-jb07-jb07-jb007-007007007",
    "operator_id": 007
}
```

Both `campaign_uuid` and `operator_id` are **required** parameters. If either is missing or invalid, the request will return an error.

A successful response includes key campaign attributes such as name, active period, game code, currency, bet value, and number of bets:

```json
{
    "start_time": "2017-11-05T13:15:30",
    "prepaid_uuid": "jb07jbjb-07007-jb007",
    "name": "st. patrick 5 x 1.005 EUR",
    "game_code": "clt_dragonrising",
    "end_time": "2017-11-05T13:15:30",
    "currency": "EUR",
    "campaign_uuid": "007-jb07-jb07-jb007-007007007",
    "bet_value": 100500,
    "bet_count": 5
}
```

### Where to find the required values?

* To obtain the `campaign_uuid`, make a request to:\
  `POST /operator/generic/v2/freebet/campaigns/list`\
  Each campaign listed in the response will include its corresponding UUID.
* To find your `operator_id`, go to the **Integration Details** tab in **HubConnect** (available once your technical integration setup is complete). Otherwise, your Technical Operations contact can help.

### Why is it useful?

This endpoint supports better visibility and validation for Freebet Campaigns, particularly useful for customer support, reporting, or real-time front-end campaign display.

If you have any questions or need assistance, please contact your Hub88 account manager or reach out to our technical support team.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.hub88.io/api-changelog/june-2025/new-endpoint-retreive-campaign-details-by-uuid.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
