Skip to main content

List employer accounts

GET 
/v1/advertisers

Returns all employer accounts the caller can access, with company, contact, and hierarchy metadata.

Pass the response's employerId as the employer parameter to request an advertiser-scoped access token.

OAuth scopeAccess token type
employer.advertising.subaccount.readAccount-scoped access token (no employer parameter). Supports 2-legged and 3-legged grants.

Request

Responses

Success

Schema

    meta

    object

    Response-related metadata.

    status int32

    HTTP status code of the response.

    errors

    object[]

    Any errors that prevented successful processing of the request. If there were no errors, the value is null.

  • Array [

  • type string

    Name of the error.

    description string

    Human-readable description of the problem.

  • ]

  • rootLocation string

    Base URL of the Sponsored Jobs API.

    perPage int32

    For endpoints that return paginated results, the effective maximum number of entries returned on one page. The value may be smaller than the maximum you requested with the perPage parameter. If the endpoint returns a single result or doesn't paginate, the value is null.

    links

    object[]

    Resources related to the requested resource.

  • Array [

  • rel string

    The relationship between the requested resource and the related resource. These values are commonly used:

    • up: The related resource is a collection that contains the requested resource, or an entity that the requested resource is attached to.
    • next: The next page of entries in a paginated result.
    • prev: The previous page of entries in a paginated result.

    However, the value may also be an arbitrary string describing the relationship, such as Campaign Info.

    href string

    Endpoint URL of the related resource. Can contain query string parameters. To get the complete URL, append the href to rootLocation.

  • ]

  • data

    object

    employers

    object[]

    List of employer accounts the caller can access. Always present; empty if the caller has none.

  • Array [

  • employerId string

    Universal employer key (advertiser ID). Pass this value as the employer parameter on the OAuth token endpoint to get an advertiser-scoped access token.

    company string

    Registered company name for the employer account.

    contact string

    Primary contact for the employer account.

    email stringnullable

    Primary contact email for the employer account. Absent if none is set.

    isRoot boolean

    true if the employer account is the root advertiser in its hierarchy (the top-level account that sub-accounts roll up to); false if it is a sub-account.

  • ]

Loading...

Was this page helpful?