GET
/
terminology
/
organization
/
{organizationId}
/
team
/
{teamId}
curl --request GET \
  --url https://enterprise-api.writer.com/terminology/organization/{organizationId}/team/{teamId} \
  --header 'Authorization: <authorization>'
{
  "result": [
    {
      "id": 123,
      "termBankId": 123,
      "term": "<string>",
      "type": "approved",
      "pos": "noun",
      "caseSensitive": true,
      "description": "<string>",
      "highlight": true,
      "creationTime": "2023-11-07T05:31:56Z",
      "modificationTime": "2023-11-07T05:31:56Z",
      "createdUser": {
        "id": 123,
        "fullName": "<string>",
        "email": "<string>"
      },
      "modifiedUser": {
        "id": 123,
        "fullName": "<string>",
        "email": "<string>"
      },
      "examples": [
        {
          "id": 123,
          "termId": 123,
          "termBankId": 123,
          "example": "<string>",
          "type": "good"
        }
      ],
      "mistakes": [
        {
          "id": 123,
          "termId": 123,
          "termBankId": 123,
          "mistake": "<string>",
          "pos": "noun",
          "caseSensitive": true
        }
      ],
      "tags": [
        {
          "id": 123,
          "tag": "<string>",
          "termId": 123,
          "parentTagId": 123
        }
      ],
      "linkedTerms": [
        {
          "id": 123,
          "termId": 123,
          "linkedTermId": 123,
          "term": "<string>",
          "pos": "noun",
          "caseSensitive": true,
          "approvedTermExtension": {
            "id": 123,
            "termId": 123,
            "capitalize": true,
            "fixCommonMistakes": true,
            "fixCase": true
          }
        }
      ],
      "backlinkedTerms": [
        {
          "id": 123,
          "termId": 123,
          "linkedTermId": 123,
          "term": "<string>",
          "pos": "noun",
          "caseSensitive": true,
          "approvedTermExtension": {
            "id": 123,
            "termId": 123,
            "capitalize": true,
            "fixCommonMistakes": true,
            "fixCase": true
          }
        }
      ],
      "approvedTermExtension": {
        "id": 123,
        "termId": 123,
        "capitalize": true,
        "fixCommonMistakes": true,
        "fixCase": true
      }
    }
  ],
  "totalCount": 123,
  "pagination": {
    "offset": 123,
    "limit": 123
  }
}

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

Headers

Authorization
string
required

Path Parameters

organizationId
integer
required
teamId
integer
required

Query Parameters

type
enum<string>
Available options:
approved,
banned,
pending
term
string
partOfSpeech
enum<string>
Available options:
noun,
verb,
adverb,
adjective
tags
string[]
sortField
enum<string>
Available options:
term,
creationTime,
modificationTime,
type
sortOrder
enum<string>
Available options:
asc,
desc
offset
integer
limit
integer

Response

200 - application/json
result
object[]
totalCount
integer
required
pagination
object
required