1. Offers
Target Circle API
  • Publisher API
    • Ads
      • List vouchers
    • Offers
      • List offers
    • Schemas
      • Transaction
        • TransactionType
      • Offer
        • OfferStatus
        • OfferReview
        • OfferFrequentlyAskedQuestion
        • OfferCategory
        • OfferVertical
        • OfferTracking
        • OfferTargetedCountry
        • OfferKpi
        • OfferPriceSegment
        • OfferDeviceGroup
        • Offer
        • OfferProductGroup
        • OfferAttributionModel
      • Voucher
      • TextLink
      • Banner
      • Link
      • Connection
      • PriceCombination
      • Image
      • Currency
      • Advertiser
      • Provider
      • Money
      • Error
      • KPI
  • Advertiser API
    • Using the API
      • Authorization
    • Login
      • Get token
      • Login
    • Performance
    • Transactions
      • Set transaction status to "pending"
      • Set transaction status to "declined"
      • Set transaction status to "approved"
    • Touchpoints
    • Offers
    • Ads
      • Bulk update text links
      • Bulk update banners
    • Trades
      • Bulk update trades
    • Schemas
      • Offer
        • OfferPriceSegment
        • OfferProductGroup
        • OfferStatus
        • OfferTracking
        • OfferTargetedCountry
        • OfferOverview
        • OfferCategory
        • OfferVertical
        • AttributionModel Filter
        • OfferStatus Filter
        • Offer
        • OfferAttributionModel
        • OfferFrequentlyAskedQuestion
        • OfferReview
      • Transaction
        • TransactionType
        • TransactionSourceCurrency
        • TransactionTrackingMethod
        • TransactionType Filter
        • TransactionOrderItem
      • Touchpoint
        • TouchpointStatus
        • TouchpointSummary
        • AttributionStatus Filter
        • TouchpointAttributionStatus
      • Job
      • Currency
      • Provider
      • Advertiser
      • Money
      • TradeType
      • TradeType Filter
      • AdType
      • AdType Filter
      • AdInventoryTrafficType
      • PriceCombination
      • KPI
      • Image
  • Provider API
    • Using the API
      • Naming Conventions
      • Authorization
      • Linking & Embedding
    • Offers
      • List offers
        GET
      • Create an offer
        POST
    • Trades
      • List trades
    • Schemas
      • Transaction
        • TransactionType
      • Offer
        • OfferVertical
        • OfferTargetedCountry
        • OfferPriceSegment
        • OfferDeviceGroup
        • Offer
        • OfferProgram
        • OfferCategory
        • GatewaySection
        • OfferProductGroup
        • OfferTracking
        • OfferStatus
        • OfferReview
        • OfferFrequentlyAskedQuestion
        • OfferAttributionModel
        • OfferProgramTerms
      • SignUpItem
      • Language
      • Connection
      • PriceCombination
      • SignInItem
      • Image
      • Currency
      • Platform
      • Advertiser
      • Provider
      • Money
      • AdInventoryTrafficType
      • Trade
      • TradeType
      • KPI
  1. Offers

Create an offer

Developing
POST
/api/v3/offers/

Request

Body Params application/jsonRequired

Examples

Responses

🟢200Success
application/json
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/api/v3/offers/' \
--header 'Content-Type: application/json' \
--data '{
    "status": {
        "code": "underConstruction"
    },
    "name": "Little Big Cloud",
    "url": "http://example.com",
    "logo": {
        "url": "http://example.com"
    },
    "defaultTargetUrl": "string",
    "attributionModel": {
        "code": "lastClick"
    },
    "tracking": {
        "deeplinking": {
            "isEnabled": true
        },
        "customTrackingDomain": {
            "isEnabled": true
        },
        "productLevelTracking": {
            "isEnabled": true
        },
        "conversionPathAttribution": {
            "isEnabled": "string"
        },
        "cookieExpiration": 2592000,
        "fingerprintExpiration": 2592000,
        "impressionExpiration": 86400
    },
    "startDate": "2019-08-24",
    "endDate": "2019-08-24",
    "vertical": {
        "code": "finance"
    },
    "category": {
        "id": 0,
        "name": "string"
    },
    "targetedCountries": [
        "string"
    ],
    "languages": [
        {
            "code": "EN",
            "name": "English",
            "isDefault": true
        }
    ],
    "provider": {
        "sid": "ghy789",
        "name": "Global Services"
    },
    "advertiser": {
        "sid": "def456",
        "name": "Cloud Corporation"
    },
    "programs": {
        "publisher": {
            "code": "publisher",
            "status": "string",
            "description": "string",
            "terms": {
                "url": "string",
                "content": "string",
                "attachment": {
                    "url": "string"
                }
            }
        },
        "promoter": {
            "code": "publisher",
            "status": "string",
            "description": "string",
            "terms": {
                "url": "string",
                "content": "string",
                "attachment": {
                    "url": "string"
                }
            }
        }
    }
}'
Response Response Example
{}
Modified at 2026-07-17 10:21:57
Previous
List offers
Next
List trades
Built with