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

# Post contentorganization team check

<Warning>
  We're deprecating these API endpoints, so the AI Studio API key setup won't work. \[Contact support] ([https://support.writer.com/](https://support.writer.com/)) if you need them.
</Warning>


## OpenAPI

````yaml post /content/organization/{organizationId}/team/{teamId}/check
openapi: 3.0.3
info:
  title: Writer Enterprise API
  version: '1.9'
servers:
  - url: https://enterprise-api.writer.com
security: []
tags:
  - name: content
    description: Content
  - name: snippet
    description: Snippet
  - name: coWrite
    description: CoWrite
  - name: user
    description: User
  - name: terminology
    description: Terminology
  - name: LLM
    description: LLM
  - name: billing
    description: Billing
  - name: styleguide
    description: Styleguide
paths:
  /content/organization/{organizationId}/team/{teamId}/check:
    post:
      tags:
        - content
      operationId: contentCheck
      parameters:
        - name: Authorization
          in: header
          required: true
          schema:
            type: string
        - name: organizationId
          in: path
          required: true
          schema:
            type: integer
            format: int64
        - name: teamId
          in: path
          required: true
          schema:
            type: integer
            format: int64
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ContentRequest'
        required: true
      responses:
        '200':
          description: ''
          headers:
            Action-Id:
              required: true
              schema:
                type: string
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProcessedContent'
        '400':
          description: Bad Request
          headers:
            Action-Id:
              required: true
              schema:
                type: string
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FailResponse'
        '401':
          description: Unauthorized
          headers:
            Action-Id:
              required: true
              schema:
                type: string
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FailResponse'
        '403':
          description: Forbidden
          headers:
            Action-Id:
              required: true
              schema:
                type: string
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FailResponse'
        '404':
          description: Not Found
          headers:
            Action-Id:
              required: true
              schema:
                type: string
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FailResponse'
        '500':
          description: Internal Server Error
          headers:
            Action-Id:
              required: true
              schema:
                type: string
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FailResponse'
components:
  schemas:
    ContentRequest:
      required:
        - content
        - settings
      type: object
      properties:
        content:
          type: string
        settings:
          $ref: '#/components/schemas/ContentSettings'
    ProcessedContent:
      type: object
      properties:
        issues:
          type: array
          items:
            $ref: '#/components/schemas/ContentIssue'
    FailResponse:
      required:
        - tpe
        - extras
      type: object
      properties:
        tpe:
          type: string
        errors:
          type: array
          items:
            $ref: '#/components/schemas/FailMessage'
        extras:
          $ref: '#/components/schemas/Json'
    ContentSettings:
      required:
        - passiveVoice
        - wordiness
        - unclearReference
        - genderInclusivePronouns
        - genderInclusiveNouns
        - ageAndFamilyStatus
        - disability
        - genderIdentitySensitivity
        - raceEthnicityNationalitySensitivity
        - sexualOrientationSensitivity
        - substanceUseSensitivity
        - confidence
        - healthyCommunication
        - grammar
        - spelling
        - contentSafeguards
      type: object
      properties:
        passiveVoice:
          type: boolean
        wordiness:
          type: boolean
        unclearReference:
          type: boolean
        genderInclusivePronouns:
          type: boolean
        genderInclusiveNouns:
          type: boolean
        ageAndFamilyStatus:
          type: boolean
        disability:
          type: boolean
        genderIdentitySensitivity:
          type: boolean
        raceEthnicityNationalitySensitivity:
          type: boolean
        sexualOrientationSensitivity:
          type: boolean
        substanceUseSensitivity:
          type: boolean
        confidence:
          type: boolean
        healthyCommunication:
          type: boolean
        grammar:
          type: boolean
        spelling:
          type: boolean
        contentSafeguards:
          type: boolean
    ContentIssue:
      required:
        - from
        - until
        - service
      type: object
      properties:
        from:
          type: integer
        until:
          type: integer
        service:
          type: string
          enum:
            - common-mistakes
            - banned-words
            - dictionary
            - gec
            - infinitive
            - spelling
            - writing-style
            - custom-rules
            - sentence-case
            - acronym
            - oxford-comma
            - ml-punctuation
            - emojis
            - gender-pronouns
            - sensitivity
            - plagiarism
            - readability
            - sentence-complexity
            - vocabulary
            - paragraph-length
            - plain-language
            - healthy-commn
            - confidence
            - data-loss-prevention
            - hate-speech
            - content-safeguards
            - feedback
            - claim
            - quote
            - gender-nouns
            - gender-tone
            - grammar
            - punctuation-dark
            - formatting
            - twitter
            - gec-dark
            - gec-gpt3
        suggestions:
          type: array
          items:
            type: string
        description:
          type: string
        meta:
          $ref: '#/components/schemas/Json'
    FailMessage:
      required:
        - description
        - key
        - extras
      type: object
      properties:
        description:
          type: string
        key:
          type: string
        extras:
          $ref: '#/components/schemas/Json'
    Json: {}

````