Files
Ethan Palm 2b150e5749 Change titles to sentence case (#833)
* change titles to sentence case

* make groups sentence case
2025-06-19 10:15:15 -07:00

57 lines
1.4 KiB
Plaintext

---
title: 'Response fields'
description: 'Display API response values'
---
The `<ResponseField>` component is designed to define the return values of an API. Many docs also use `<ResponseField>` on pages when you need to list the types of something.
<ResponseField name="response" type="string" required>
A response field example
</ResponseField>
```mdx
<ResponseField name="response" type="string" required>
A response field example
</ResponseField>
```
## Props
<ResponseField name="name" type="string" required>
The name of the response value.
</ResponseField>
<ResponseField name="type" type="string" required>
Expected type of the response value - this can be any arbitrary string.
</ResponseField>
<ResponseField name="default" type="string">
The default value.
</ResponseField>
<ResponseField name="required" type="boolean">
Show "required" beside the field name.
</ResponseField>
<ResponseField name="deprecated" type="boolean">
Whether a field is deprecated or not.
</ResponseField>
<ResponseField name="pre" type="string[]">
Labels that are shown before the name of the field
</ResponseField>
<ResponseField name="post" type="string[]">
Labels that are shown after the name of the field
</ResponseField>
<RequestExample>
```mdx Response Field Example
<ResponseField name="response" type="string" required>
A response field example
</ResponseField>
```
</RequestExample>