Skip to main content

Back Office Management API

This API provides lightweight reference data for core GoKart offer configuration entities.

Written by GoKart Support

This API is designed for lookups of Back Office-managed entities such as advertisers, partners, placements, categories, and age ranges.


Base Path

GET /api/v1/sdk-back-office-management

Authentication

All endpoints require a Management-scoped API token passed in the request headers.


Filtering & Pagination

Name

Type

Example

Description

search

filter.search=my+offer

page

integer

?page=0 (first page)
?page=1 (second page)

Specifies which page of results to retrieve. Should be zero or positive integers.

page_size

integer

page_size=10

Defines the number of results returned per page. Must be a positive integer between 1–100. Default: 10


Endpoints

Example Request:

GET https://api.[YOUR_TENANT].getgokart.ai/api/v1/sdk-back-office-management/categories

Advertisers

  • GET /advertisers
    Returns lightweight advertiser ID/name references.

  • GET /advertisers/{id}
    Returns a single advertiser reference by exact ID.


Partners

  • GET /partners
    Returns lightweight partner ID/name references.

  • GET /partners/{id}
    Returns a single partner reference by exact ID.


Placements

  • GET /placements
    Returns lightweight placement ID/name references.

  • GET /placements/{id}
    Returns a single placement reference by exact ID.


Categories

  • GET /categories
    Returns category ID/name references.

  • GET /categories/{id}
    Returns a single category reference by exact ID.


Age Ranges

  • GET /age-ranges
    Returns age range ID/name references, including minimum and maximum age values.

  • GET /age-ranges/{id}
    Returns a single age range reference by exact ID.

Did this answer your question?