Unified.to group API

The group API from Unified.to — 6 operation(s) for group.

Documentation

Specifications

Schemas & Data

📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-accounting-account-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-accounting-invoice-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-accounting-transaction-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-ats-job-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-ats-candidate-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-ats-application-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-calendar-event-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-crm-contact-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-crm-company-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-crm-deal-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-commerce-item-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-commerce-review-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-hris-employee-schema.json

Other Resources

OpenAPI Specification

unified-to-group-api-openapi.yml Raw ↑
openapi: 3.0.0
info:
  contact:
    email: hello@unified.to
    url: https://unified.to/contact
  description: One API to Rule Them All
  termsOfService: https://unified.to/tos
  title: Unified.to account group API
  version: '1.0'
servers:
- description: North American data region
  url: https://api.unified.to
- description: European data region
  url: https://api-eu.unified.to
- description: Australian data region
  url: https://api-au.unified.to
security:
- jwt: []
tags:
- name: group
paths:
  /ads/{connection_id}/group:
    get:
      operationId: listAdsGroups
      parameters:
      - in: query
        name: limit
        required: false
        schema:
          type: number
      - in: query
        name: offset
        required: false
        schema:
          type: number
      - description: Return only results whose updated date is equal or greater to this value (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
        in: query
        name: updated_gte
        required: false
        schema:
          type: string
      - in: query
        name: sort
        required: false
        schema:
          type: string
      - in: query
        name: order
        required: false
        schema:
          type: string
      - description: Query string to search. eg. email address or name
        in: query
        name: query
        required: false
        schema:
          type: string
      - description: The org ID to filter by (reference to AdsOrganization)
        in: query
        name: org_id
        required: false
        schema:
          type: string
      - description: The campaign ID to filter by
        in: query
        name: campaign_id
        required: false
        schema:
          type: string
      - description: The parent ID to filter by
        in: query
        name: parent_id
        required: false
        schema:
          type: string
      - description: The IO ID to filter by
        in: query
        name: io_id
        required: false
        schema:
          type: string
      - description: The start date to filter by (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
        in: query
        name: start_gte
        required: false
        schema:
          type: string
      - description: The end date to filter by (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
        in: query
        name: end_lt
        required: false
        schema:
          type: string
      - description: Fields to return
        in: query
        name: fields
        required: false
        schema:
          items:
            enum:
            - id
            - created_at
            - updated_at
            - name
            - parent_id
            - campaign_id
            - organization_id
            - insertionorder_id
            - status
            - targeting
            - bid_amount
            - bid_strategy
            - budget_amount
            - budget_period
            - budget_allocation_type
            - start_at
            - end_at
            - budget_unit
            - budget_max_amount
            - type
            - has_eu_political_ads
            - pacing
            - frequency_cap
            - creative_ids
            - optimization_goal
            - billing_event
            - currency
            - promoted
            - raw
            type: string
          type: array
      - description: 'Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar'
        in: query
        name: raw
        required: false
        schema:
          type: string
      - description: ID of the connection
        in: path
        name: connection_id
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AdsGroups'
          description: Successful
      security:
      - jwt: []
      summary: List All Groups
      tags:
      - group
    post:
      operationId: createAdsGroup
      parameters:
      - description: Fields to return
        in: query
        name: fields
        required: false
        schema:
          items:
            enum:
            - id
            - created_at
            - updated_at
            - name
            - parent_id
            - campaign_id
            - organization_id
            - insertionorder_id
            - status
            - targeting
            - bid_amount
            - bid_strategy
            - budget_amount
            - budget_period
            - budget_allocation_type
            - start_at
            - end_at
            - budget_unit
            - budget_max_amount
            - type
            - has_eu_political_ads
            - pacing
            - frequency_cap
            - creative_ids
            - optimization_goal
            - billing_event
            - currency
            - promoted
            - raw
            type: string
          type: array
        type: array
      - description: 'Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar'
        in: query
        name: raw
        required: false
        schema:
          type: string
      - description: ID of the connection
        in: path
        name: connection_id
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AdsGroup'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AdsGroup'
          description: Successful
      security:
      - jwt: []
      summary: Create a Group
      tags:
      - group
  /ads/{connection_id}/group/{id}:
    delete:
      operationId: removeAdsGroup
      parameters:
      - description: ID of the connection
        in: path
        name: connection_id
        required: true
        schema:
          type: string
      - description: ID of the Group
        in: path
        name: id
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful
        default:
          content: {}
          description: Successful
          headers:
            Content-Type:
              required: false
              schema:
                type: string
      security:
      - jwt: []
      summary: Remove a Group
      tags:
      - group
    get:
      operationId: getAdsGroup
      parameters:
      - description: Fields to return
        in: query
        name: fields
        required: false
        schema:
          items:
            enum:
            - id
            - created_at
            - updated_at
            - name
            - parent_id
            - campaign_id
            - organization_id
            - insertionorder_id
            - status
            - targeting
            - bid_amount
            - bid_strategy
            - budget_amount
            - budget_period
            - budget_allocation_type
            - start_at
            - end_at
            - budget_unit
            - budget_max_amount
            - type
            - has_eu_political_ads
            - pacing
            - frequency_cap
            - creative_ids
            - optimization_goal
            - billing_event
            - currency
            - promoted
            - raw
            type: string
          type: array
        type: array
      - description: 'Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar'
        in: query
        name: raw
        required: false
        schema:
          type: string
      - description: ID of the connection
        in: path
        name: connection_id
        required: true
        schema:
          type: string
      - description: ID of the Group
        in: path
        name: id
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AdsGroup'
          description: Successful
      security:
      - jwt: []
      summary: Retrieve a Group
      tags:
      - group
    patch:
      operationId: patchAdsGroup
      parameters:
      - description: Fields to return
        in: query
        name: fields
        required: false
        schema:
          items:
            enum:
            - id
            - created_at
            - updated_at
            - name
            - parent_id
            - campaign_id
            - organization_id
            - insertionorder_id
            - status
            - targeting
            - bid_amount
            - bid_strategy
            - budget_amount
            - budget_period
            - budget_allocation_type
            - start_at
            - end_at
            - budget_unit
            - budget_max_amount
            - type
            - has_eu_political_ads
            - pacing
            - frequency_cap
            - creative_ids
            - optimization_goal
            - billing_event
            - currency
            - promoted
            - raw
            type: string
          type: array
        type: array
      - description: 'Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar'
        in: query
        name: raw
        required: false
        schema:
          type: string
      - description: ID of the connection
        in: path
        name: connection_id
        required: true
        schema:
          type: string
      - description: ID of the Group
        in: path
        name: id
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AdsGroup'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AdsGroup'
          description: Successful
      security:
      - jwt: []
      summary: Update a Group
      tags:
      - group
    put:
      operationId: updateAdsGroup
      parameters:
      - description: Fields to return
        in: query
        name: fields
        required: false
        schema:
          items:
            enum:
            - id
            - created_at
            - updated_at
            - name
            - parent_id
            - campaign_id
            - organization_id
            - insertionorder_id
            - status
            - targeting
            - bid_amount
            - bid_strategy
            - budget_amount
            - budget_period
            - budget_allocation_type
            - start_at
            - end_at
            - budget_unit
            - budget_max_amount
            - type
            - has_eu_political_ads
            - pacing
            - frequency_cap
            - creative_ids
            - optimization_goal
            - billing_event
            - currency
            - promoted
            - raw
            type: string
          type: array
        type: array
      - description: 'Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar'
        in: query
        name: raw
        required: false
        schema:
          type: string
      - description: ID of the connection
        in: path
        name: connection_id
        required: true
        schema:
          type: string
      - description: ID of the Group
        in: path
        name: id
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AdsGroup'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AdsGroup'
          description: Successful
      security:
      - jwt: []
      summary: Update a Group
      tags:
      - group
  /hris/{connection_id}/group:
    get:
      operationId: listHrisGroups
      parameters:
      - in: query
        name: limit
        required: false
        schema:
          type: number
      - in: query
        name: offset
        required: false
        schema:
          type: number
      - description: Return only results whose updated date is equal or greater to this value (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
        in: query
        name: updated_gte
        required: false
        schema:
          type: string
      - in: query
        name: sort
        required: false
        schema:
          type: string
      - in: query
        name: order
        required: false
        schema:
          type: string
      - description: Query string to search. eg. email address or name
        in: query
        name: query
        required: false
        schema:
          type: string
      - description: The company ID to filter by (reference to HrisCompany)
        in: query
        name: company_id
        required: false
        schema:
          type: string
      - description: The type to filter by
        in: query
        name: type
        required: false
        schema:
          type: string
      - description: Fields to return
        in: query
        name: fields
        required: false
        schema:
          items:
            enum:
            - id
            - created_at
            - updated_at
            - name
            - description
            - parent_id
            - type
            - user_ids
            - manager_ids
            - is_active
            - company_id
            - raw
            type: string
          type: array
      - description: 'Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar'
        in: query
        name: raw
        required: false
        schema:
          type: string
      - description: ID of the connection
        in: path
        name: connection_id
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HrisGroups'
          description: Successful
      security:
      - jwt: []
      summary: List All Groups
      tags:
      - group
    post:
      operationId: createHrisGroup
      parameters:
      - description: Fields to return
        in: query
        name: fields
        required: false
        schema:
          items:
            enum:
            - id
            - created_at
            - updated_at
            - name
            - description
            - parent_id
            - type
            - user_ids
            - manager_ids
            - is_active
            - company_id
            - raw
            type: string
          type: array
        type: array
      - description: 'Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar'
        in: query
        name: raw
        required: false
        schema:
          type: string
      - description: ID of the connection
        in: path
        name: connection_id
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/HrisGroup'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HrisGroup'
          description: Successful
      security:
      - jwt: []
      summary: Create a Group
      tags:
      - group
  /hris/{connection_id}/group/{id}:
    delete:
      operationId: removeHrisGroup
      parameters:
      - description: ID of the connection
        in: path
        name: connection_id
        required: true
        schema:
          type: string
      - description: ID of the Group
        in: path
        name: id
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful
        default:
          content: {}
          description: Successful
          headers:
            Content-Type:
              required: false
              schema:
                type: string
      security:
      - jwt: []
      summary: Remove a Group
      tags:
      - group
    get:
      operationId: getHrisGroup
      parameters:
      - description: Fields to return
        in: query
        name: fields
        required: false
        schema:
          items:
            enum:
            - id
            - created_at
            - updated_at
            - name
            - description
            - parent_id
            - type
            - user_ids
            - manager_ids
            - is_active
            - company_id
            - raw
            type: string
          type: array
        type: array
      - description: 'Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar'
        in: query
        name: raw
        required: false
        schema:
          type: string
      - description: ID of the connection
        in: path
        name: connection_id
        required: true
        schema:
          type: string
      - description: ID of the Group
        in: path
        name: id
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HrisGroup'
          description: Successful
      security:
      - jwt: []
      summary: Retrieve a Group
      tags:
      - group
    patch:
      operationId: patchHrisGroup
      parameters:
      - description: Fields to return
        in: query
        name: fields
        required: false
        schema:
          items:
            enum:
            - id
            - created_at
            - updated_at
            - name
            - description
            - parent_id
            - type
            - user_ids
            - manager_ids
            - is_active
            - company_id
            - raw
            type: string
          type: array
        type: array
      - description: 'Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar'
        in: query
        name: raw
        required: false
        schema:
          type: string
      - description: ID of the connection
        in: path
        name: connection_id
        required: true
        schema:
          type: string
      - description: ID of the Group
        in: path
        name: id
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/HrisGroup'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HrisGroup'
          description: Successful
      security:
      - jwt: []
      summary: Update a Group
      tags:
      - group
    put:
      operationId: updateHrisGroup
      parameters:
      - description: Fields to return
        in: query
        name: fields
        required: false
        schema:
          items:
            enum:
            - id
            - created_at
            - updated_at
            - name
            - description
            - parent_id
            - type
            - user_ids
            - manager_ids
            - is_active
            - company_id
            - raw
            type: string
          type: array
        type: array
      - description: 'Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar'
        in: query
        name: raw
        required: false
        schema:
          type: string
      - description: ID of the connection
        in: path
        name: connection_id
        required: true
        schema:
          type: string
      - description: ID of the Group
        in: path
        name: id
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/HrisGroup'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HrisGroup'
          description: Successful
      security:
      - jwt: []
      summary: Update a Group
      tags:
      - group
  /scim/{connection_id}/groups:
    get:
      operationId: listScimGroups
      parameters:
      - in: query
        name: filter
        required: false
        schema:
          type: string
      - in: query
        name: sortBy
        required: false
        schema:
          type: string
      - in: query
        name: sortOrder
        required: false
        schema:
          type: string
      - in: query
        name: startIndex
        required: false
        schema:
          type: number
      - in: query
        name: count
        required: false
        schema:
          type: number
      - description: ID of the connection
        in: path
        name: connection_id
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ScimGroups'
          description: Successful
      security:
      - jwt: []
      summary: List Groups
      tags:
      - group
    post:
      operationId: createScimGroups
      parameters:
      - description: ID of the connection
        in: path
        name: connection_id
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ScimGroup'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ScimGroup'
          description: Successful
      security:
      - jwt: []
      summary: Create Group
      tags:
      - group
  /scim/{connection_id}/groups/{id}:
    delete:
      operationId: removeScimGroups
      parameters:
      - description: ID of the connection
        in: path
        name: connection_id
        required: true
        schema:
          type: string
      - description: ID of the Group
        in: path
        name: id
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful
        default:
          content: {}
          description: Successful
          headers:
            Content-Type:
              required: false
              schema:
                type: string
      security:
      - jwt: []
      summary: Delete Group
      tags:
      - group
    get:
      operationId: getScimGroups
      parameters:
      - description: ID of the connection
        in: path
        name: connection_id
        required: true
        schema:
          type: string
      - description: ID of the Group
        in: path
        name: id
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ScimGroup'
          description: Successful
      security:
      - jwt: []
      summary: Get Group
      tags:
      - group
    patch:
      operationId: patchScimGroups
      parameters:
      - description: ID of the connection
        in: path
        name: connection_id
        required: true
        schema:
          type: string
      - description: ID of the Group
        in: path
        name: id
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ScimGroup'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ScimGroup'
          description: Successful
      security:
      - jwt: []
      summary: Update Group
      tags:
      - group
    put:
      operationId: updateScimGroups
      parameters:
      - description: ID of the connection
        in: path
        name: connection_id
        required: true
        schema:
          type: string
      - description: ID of the Group
        in: path
        name: id
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ScimGroup'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ScimGroup'
          description: Successful
      security:
      - jwt: []
      summary: Update Group
      tags:
      - group
components:
  schemas:
    property_AdsGroup_targeting_language_codes:
      items:
        type: string
      type: array
    property_ScimGroup_schemas:
      description: Array of schema URIs
      items:
        enum:
        - urn:ietf:params:scim:schemas:core:2.0:Group
        type: string
        x-speakeasy-unknown-values: allow
      type: array
    property_AdsGroup_targeting_placement_facebook_positions:
      items:
        type: string
      type: array
    property_AdsGroup_targeting_placement_messenger_positions:
      items:
        type: string
      type: array
    property_AdsGroup_targeting_geographic_cities:
      items:
        $ref: '#/components/schemas/CityTarget'
      type: array
    property_AdsGroup_targeting_audience:
      properties:
        behaviors:
          $ref: '#/components/schemas/property_AdsGroup_targeting_audience_behaviors'
        combination_spec:
          $ref: '#/components/schemas/property_AdsGroup_targeting_audience_combination_spec'
        custom_audiences:
          $ref: '#/components/schemas/property_AdsGroup_targeting_audience_custom_audiences'
        excluded_behaviors:
          $ref: '#/components/schemas/property_AdsGroup_targeting_audience_excluded_behaviors'
        excluded_custom_audiences:
          $ref: '#/components/schemas/property_AdsGroup_targeting_audience_excluded_custom_audiences'
        excluded_interests:
          $ref: '#/components/schemas/property_AdsGroup_targeting_audience_excluded_interests'
        interests:
          $ref: '#/components/schemas/property_AdsGroup_targeting_audience_interests'
        lookalike_audiences:
          $ref: '#/components/schemas/property_AdsGroup_targeting_audience_lookalike_audiences'
      type: object
    property_AdsGroup_targeting_content_urls:
      items:
        type: string
      type: array
    ScimGroupMember:
      properties:
        $ref:
          type: string
        display:
          type: string
        operation:
          enum:
          - add
          - delete
          type: string
          x-speakeasy-unknown-values: allow
        type:
          enum:
          - User
          - Group
          type: string
          x-speakeasy-unknown-values: allow
        value:
          type: string
      required:
      - value
      type: object
    property_AdsGroup_targeting_content_video_excluded_youtube_videos:
      items:
        type: string
      type: array
    property_AdsGroup_targeting_geographic_us_dmas:
      items:
        type: string
      type: array
    property_AdsGroup_targeting_brand_safety_excluded_content_labels:
      description: Google Ads ContentLabelType
      items:
        type: string
      type: array
    property_AdsGroup_targeting_content_video_durations:
      items:
        enum:
        - SHORT
        - MEDIUM
        - LONG
        type: string
        x-speakeasy-unknown-values: allow
      type: array
    property_AdsGroup_targeting_brand_safety_block_list_ids:
      items:
        type: string
      type: array
    property_AdsGroup_promoted:
      items:
        $ref: '#/components/schemas/AdsPromoted'
      type: array
    property_AdsGroup_targeting_audience_lookalike_audiences:
      items:
        $ref: '#/components/schemas/LookalikeAudience'
      type: array
    property_HrisGroup_manager_ids:
      items:
        type: string
      type: array
    CityTarget:
      properties:
        id:
          type: string
        name:
          type: string
        radius:
          type: number
        radius_unit:
          enum:
          - MILES
          - KILOMETERS
          type: string
          x-speakeasy-unknown-values: allow
      required:
      - id
      type: object
    HrisGroup:
      properties:
        company_id:
          type: string
        created_at:
          format: date-time
          type: string
        description:
          type: string
        id:
          type: string
        is_active:
          type: boolean
        manager_ids:
          $ref: '#/components/schemas/property_HrisGroup_manager_ids'
        name:
          type: string
        parent_id:
          type: string
        raw:
          additionalProperties: true
          type: object
        type:
          enum:
          - TEAM
          - GROUP
          - DEPARTMENT
          - DIVISION
          - BUSINESS_UNIT
          - BRANCH
          - SUB_DEPARTMENT
          type: string
          x-speakeasy-unknown-values: allow
        updated_at:
          format: date-time
          type: string
        user_ids:
          $ref: '#/components/schemas/property_HrisGroup_user_ids'
      type: object
    property_AdsGroup_targeting_placement:
      properties:
        audience_network_positions:
          $ref: '#/components/schemas/property_AdsGroup_targeting_placement_audience_network_positions'
        facebook_positions:
          $ref: '#/components/schemas/property_AdsGroup_targeting_placement_facebook_positions'
        instagram_positions:
          $ref: '#/components/schemas/property_AdsGroup_targeting_placement_instagram_positions'
        messenger_positions:
          $ref: '#/components/schemas/property_AdsGroup_targeting_placement_messenger_positions'
        platforms:
          $ref: '#/components/schemas/property_AdsGroup_targeting_placement_platforms'
      type: object
    property_AdsGroup_pacing:
      properties:
        daily_max_amount:
          type: number
        daily_max_impressions:
          type: number
        period:
          enum:
          - UNSPECIFIED
          - DAILY
          - FLIGHT
          type: string
          x-speakeasy-unknown-values: allow
        type:
          type: string
      type: object
    property_AdsGroup_targeting_language:
      description: Language targeting (Meta
      properties:
        codes:
          $ref: '#/components/schemas/property_AdsGroup_targeting_language_codes'
        locale_ids:
          $ref: '#/components/schemas/property_AdsGroup_targeting_language_locale_ids'
      type: object
    AudienceSegment:
      description: 'Audience targeting (Meta: custom_audiences, lookalike_audiences, flexible_spec)'
      properties:
        id:
          type: string
        name:
          type: string
      required:
      - id
      type: object
    property_AdsGroup_targeting_content_video_youtube_videos:
      items:
        type: string
      type: array
    property_AdsGroup_targeting_content_video_positions:
      items:
        enum:
        - PREROLL
        - MIDROLL
        - POSTROLL
        - INSTREAM
        -

# --- truncated at 32 KB (52 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/openapi/unified-to-group-api-openapi.yml