Mediago API
en
  • en
  • zh
  1. Account Management
Mediago API
en
  • en
  • zh
  • Authentication
    • Get Access Token
      POST
  • Account Management
    • Get Authorized Account List
      GET
  • Campaign Management
    • Get Authorized Campaign List
      GET
    • Get Campaigns Detail
      GET
    • Create Campaign
      POST
    • Update Campaign
      POST
    • Batch Update Campaigns
      POST
    • Batch Active/Pause Campaigns
      POST
    • Batch Archive Campaigns
      POST
  • Ad Management
    • Get Authorized Ad List
      GET
    • Batch Active/Pause Ads
      POST
  • Sites Block Management
    • Get Account Block List
      GET
    • Block/Unblock Sites at Account
      POST
    • Get Campaign Block List
      GET
    • Block/Unblock Sites at Campaign
      POST
  • Report APIs
    • Get Daily Summary Data of All Campaign
      GET
    • Get Daily Report in Campaign Dimension
      GET
    • Get Daily Report in Ad Dimension
      GET
    • Get Hourly Realtime Data in Campaign or Ad Dimension
      GET
    • Get Account Daily Report in Site Dimension
      GET
    • Get Daily Report in Site Dimension
      GET
  1. Account Management

Get Authorized Account List

GET
https://api.mediago.io/manage/v1/account
Last modified:2025-10-13 07:21:33
Get a list of account that you have authority to get data or manage. Returns an array of account_id and account_name and pixel list in the response body if success with http code 200.
QPS limit: 60, IP limit: 15.

Request

Query Params

Header Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.mediago.io/manage/v1/account' \
--header 'Authorization: Bearer your_access_token_here' \
--header 'Content-Type: application/x-www-form-urlencoded'

Responses

🟢200Success Response
application/json
Body

Example
[
  {
    "account_id": "1",
    "account_name": "demo-account",
    "pixels": [
      {
        "conversion_name": "purchase",
        "category": "Purchase",
        "include_in_total_conversion": 0,
        "status": 0
      },
      {
        "conversion_name": "lead",
        "category": "Lead",
        "include_in_total_conversion": 1,
        "status": 1
      }
    ]
  }
]
🟠401Unauthorized - Invalid Access Token
🟠403Forbidden - Token Expired
Modified at 2025-10-13 07:21:33
Previous
Account Management
Next
Campaign Management
Built with