Backoffice API
  1. Advertisers
Backoffice API
  • Back to home
  • AdOps
  • Advertisers
    • Paginated Advertisers
      GET
    • Create Advertiser
      POST
    • Advertiser by id
      GET
    • Update Advertiser by id
      PUT
  • Ads
    • Paginated Ads in Advertiser
      GET
    • Create Ad in Advertiser
      POST
    • Ad by id
      GET
    • Update Ad by id
      PUT
    • Place an Ad in Issue or Media
      POST
  • Creatives
    • All creatives in Ad
      GET
    • Create Creative in Ad
      POST
    • Creative by id
      GET
    • Update Creative by id
      PUT
    • Upload Creative image by id
      PUT
    • Remove Creative by id
      DELETE
  • Categories
    • Paginated Categories
      GET
    • Create Category
      POST
    • Category by id
      GET
    • Update Category by id
      PUT
    • Delete Category by id
      DELETE
  1. Advertisers

Update Advertiser by id

PUT
/advertisers/{advertiser_id}

Request

Authorization
API Key
Add parameter in header
x-api-key
Example:
x-api-key: ********************
or
API Key
Add parameter in query
x-api-key
Example:
x-api-key: ********************
or
Path Params

Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

🟠400Invalid UUID
🟠400Bad Request
🟠401Unauthorized API KEY
🟠403Unauthorized roles
🟠404Entity not found
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'https://prod.your-api-server.com/api/ad-ops/v2/advertisers/fa1e4131-8a1b-4290-86df-0e42473c82ee' \
--header 'x-api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "name": "string",
    "contact_name": "string",
    "email": "string",
    "phone": "string",
    "business_reference": "string",
    "address": {
        "number": "string",
        "street1": "string",
        "street2": "string",
        "city": "string",
        "postcode": "string",
        "state": "string"
    },
    "category": {
        "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
        "locale": "en",
        "value": "string",
        "slug": "string"
    }
}'
Response Response Example
200 - Example 1
{
    "data": {
        "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
        "name": "string",
        "contact_name": "string",
        "email": "string",
        "phone": "string",
        "business_reference": "string",
        "address": {
            "number": "string",
            "street1": "string",
            "street2": "string",
            "city": "string",
            "postcode": "string",
            "state": "string"
        },
        "category": {
            "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
            "locale": "en",
            "value": "string",
            "slug": "string"
        },
        "inserted_at": "2019-08-24T14:15:22Z",
        "updated_at": "2019-08-24T14:15:22Z"
    }
}
Modified at 2025-06-19 16:38:40
Previous
Advertiser by id
Next
Paginated Ads in Advertiser
Built with