1. Transactions
Target Circle API
  • Publisher API
    • Ads
      • List vouchers
    • Offers
      • List offers
    • Schemas
      • Voucher
      • TextLink
      • Banner
      • Link
      • Offer
      • Connection
      • PriceCombination
      • Image
      • Currency
      • ProductGroup
  • Advertiser API
    • Authorization
    • Login
      • Get token
      • Login
    • Transactions
      • Set transaction status to "pending"
        PUT
      • Set transaction status to "declined"
        PUT
      • Set transaction status to "approved"
        PUT
    • Performance
    • Bulk update text links
      PATCH
    • Bulk update banners
      PATCH
    • Bulk update trades
      PATCH
    • Schemas
      • Job
      • Currency
      • attribution-model
  1. Transactions

Set transaction status to "declined"

Developing
PUT
https://api.targetcircle.com/api/v2/advertiser/transactions/status-declined

Request

Authorization
Body Params application/jsonRequired

Examples

Responses

🟢202Accepted
application/json
The request has been accepted and understood by the server, but the resource is not (yet) updated.
Bodyapplication/json

🟠401Unauthorized
🔴500Internal Server Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'https://api.targetcircle.com/api/v2/advertiser/transactions/status-declined' \
--header 'Content-Type: application/json' \
--data '{
    "advertiserTransactionId": "#001",
    "offerSid": "abc123",
    "reason": "Cancelation"
}'
Response Response Example
{
    "job": {
        "id": "string",
        "status": "string"
    }
}
Modified at 2026-02-19 15:10:32
Previous
Set transaction status to "pending"
Next
Set transaction status to "approved"
Built with