> For the complete documentation index, see [llms.txt](https://docs.tnid.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tnid.com/api-reference/002_company/018_rcs_and_ai_suggestions/001__get_company_rcs_information.md).

# Get Company RCS Information

GraphQL endpoint: `/company`

Returns the company's RCS agent information — agent identity, branding, capabilities, suggested replies/actions, and the authorization contact. Returns null when no RCS information has been set up yet.

## Query

```graphql
query {
  companyRcsInformation {
    id
    countryOfIncorporation
    agentLogoUrl
    agentName
    agentDescription
    agentColorSchemaPrimary
    agentColorSchemaSecondary
    agentCapabilities
    agentRegion
    welcomeMessage
    richMediaSupport
    suggestedReplies {
      id
      name
    }
    suggestedActions {
      id
      name
    }
    authorizationContact {
      title
      firstName
      lastName
      emails
      telephoneNumbers
    }
    insertedAt
    updatedAt
  }
}

```

## Variables

```json
{}
```

## Response

```json
{
  "data": {
    "companyRcsInformation": {
      "agentCapabilities": null,
      "agentColorSchemaPrimary": "#FF0000",
      "agentColorSchemaSecondary": null,
      "agentDescription": "A test RCS agent",
      "agentLogoUrl": "https://example.com/logo.png",
      "agentName": "Test Agent",
      "agentRegion": null,
      "authorizationContact": null,
      "countryOfIncorporation": "US",
      "id": "00000000-0000-4000-8000-000000000001",
      "insertedAt": "2026-01-15T09:00:00",
      "richMediaSupport": true,
      "suggestedActions": [],
      "suggestedReplies": [],
      "updatedAt": "2026-01-15T09:00:00",
      "welcomeMessage": null
    }
  }
}
```
