diff --git a/packages/docs/docs/tutorials/bots/bot-basics.md b/packages/docs/docs/tutorials/bots/bot-basics.md index 8a787871ac..53dbc170eb 100644 --- a/packages/docs/docs/tutorials/bots/bot-basics.md +++ b/packages/docs/docs/tutorials/bots/bot-basics.md @@ -167,15 +167,17 @@ You can find the `id` of your Bot by clicking on the **Details** tab of the Bot #### `CONTENT_TYPE` -| Content-Type | typeof `event.input` | Description | -| -------------------------- | -------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `application/fhir+json` | [`Resource`](../../api/fhir/resources) | `` is parsed as a [FHIR Resource](../../fhir-basics#resources) encoded as a JSON string | -| `text/plain` | `string` | `` is parsed as plaintext string | -| `x-application/hl7-v2+er7` | [`HL7Message`](../../sdk/classes/Hl7Message) | `` is a string that should be parsed as a pipe-delimited HL7v2 message. HL7v2 is a common text-based message protocol used in legacy healthcare systems | +| Content-Type | typeof `event.input` | Description | +| ------------------------------------ | -------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `text/plain` | `string` | `` is parsed as plaintext string | +| `application/json` | `Record` | `` is parsed as JSON-encoded object | +| `application/x-www-form-urlencoded ` | `Record` | `` is parsed as URL-encoded string, resulting in a key/value map | +| `application/fhir+json` | [`Resource`](../../api/fhir/resources) | `` is parsed as a [FHIR Resource](../../fhir-basics#resources) encoded as JSON | +| `x-application/hl7-v2+er7` | [`HL7Message`](../../sdk/classes/Hl7Message) | `` is a string that should be parsed as a pipe-delimited HL7v2 message. HL7v2 is a common text-based message protocol used in legacy healthcare systems | #### `ACCESS_TOKEN` -This is the `access_token` you receive after completing the OAuth authentication flow. See [this tutorial](../api-basics/create-fhir-data#authenticating-using-oauth-client-credentials-flow) for more information. +This is the `access_token` you receive after completing the OAuth authentication flow. See [this tutorial](/docs/tutorials/security/client-credentials#connecting-to-the-service) for more information. #### `INPUT_DATA`