advertisementBrandings
QUERY

A page of advertisement brandings associated with the specified hirerId.A maximum of 100 advertisement brandings can be returned in a single page. Additional advertisement brandings can be queried using a pagination cursor.The result list is returned in ascending creation date & time order. It starts from the earliest known advertisement branding if no pagination arguments are provided.This query accepts browser tokens that include the query:advertisement-brandings scope.

Arguments

Name
Description
hirerId* 
String!
The identifier for the HiringOrganization.
after 
String
An opaque cursor to the earlier bounding advertisement brandings.Resulting advertisement brandings will succeed this cursor.
before 
String
An opaque cursor to the later bounding advertisement brandings.Resulting advertisement brandings will precede this cursor.
first 
Int
The upper limit of advertisement brandings to return from the start of the list.Defaults to 10 if neither first nor last are specified. Excess advertisement brandings will be trimmed from the end of the list.first and last cannot be specified in the same query.
last 
Int
The upper limit of advertisement brandings to return from the end of the list.Excess advertisement brandings will be trimmed from the start of the list.first and last cannot be specified in the same query.

Result

Name
Description
A page of advertisement brandings for a hirer.

Sample

GraphQL
query ($hirerId: String!) {
  advertisementBrandings(hirerId: $hirerId) {
    brandManagementUrl {
      url
    }
  }
}