> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anysite.io/llms.txt
> Use this file to discover all available pages before exploring further.

# /taleo/jobs/search

> List the open job postings of one company's Taleo career section by tenant label, optionally narrowed by a free-text keyword and by the place, job field, organization, job type, schedule, level, employment status and posting age the board itself lists. Each row carries the internal job id, the requisition number that identifies the posting publicly, the title, the locations, the career section's own remaining display columns and the posting URL.

**Price:** 10 credits per 25 results

**⚠️ Common errors:** 412: Tenant has no reachable public career section, 422: A location, category, organization, job_type, schedule, level, employee_status or posted_within value this board does not list



## OpenAPI

````yaml /openapi/jobs.json post /api/taleo/jobs/search
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/taleo/jobs/search:
    post:
      tags:
        - /taleo
      summary: /taleo/jobs/search
      description: >-
        List the open job postings of one company's Taleo career section by
        tenant label, optionally narrowed by a free-text keyword and by the
        place, job field, organization, job type, schedule, level, employment
        status and posting age the board itself lists. Each row carries the
        internal job id, the requisition number that identifies the posting
        publicly, the title, the locations, the career section's own remaining
        display columns and the posting URL.


        **Price:** 10 credits per 25 results


        **⚠️ Common errors:** 412: Tenant has no reachable public career
        section, 422: A location, category, organization, job_type, schedule,
        level, employee_status or posted_within value this board does not list
      operationId: __api_taleo_jobs_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TaleoJobsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TaleoJobSummary'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    TaleoJobsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        tenant:
          type: string
          minLength: 1
        count:
          type: integer
          maximum: 1000
          minimum: 1
        career_section:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
        query:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
        location:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
        category:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
        organization:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
        job_type:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
        schedule:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
        level:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
        employee_status:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
        posted_within:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
      type: object
      required:
        - tenant
        - count
    TaleoJobSummary:
      properties:
        '@type':
          type: string
          default: TaleoJobSummary
        id:
          type: string
        tenant:
          type: string
        contest_no:
          anyOf:
            - type: string
            - type: 'null'
        locations:
          items:
            type: string
          type: array
          default: []
        columns:
          items:
            type: string
          type: array
          default: []
        hot_job:
          anyOf:
            - type: boolean
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - tenant
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````