Skip to content
This repository was archived by the owner on Sep 29, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/views/docs/index.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ $cols = [
<li><a href="/docs/pagination">Pagination</a></li>
<li><a href="/docs/custom-domains">Custom Domains</a></li>
<li><a href="/docs/permissions">Permissions</a></li>
<li><a href="/docs/error-codes">Error Codes</a></li>
<li><a href="/docs/response-codes">Response Codes</a></li>
<li><a href="/docs/rate-limits">Rate Limits</a></li>
</ul>
</nav>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ $errorTypes = $this->getParam('errors', []);
<td data-title="Description: ">The requested resource has been created successfully.</td>
</tr>

<tr>
<td data-title="Code: ">202</td>
<td data-title="Text: ">Accepted</td>
<td data-title="Description: ">The requested change has been accepted for processing but has not been completed.</td>
</tr>

<tr>
<td data-title="Code: ">204</td>
<td data-title="Text: ">No Content</td>
Expand Down Expand Up @@ -73,6 +79,12 @@ $errorTypes = $this->getParam('errors', []);
<td data-title="Description: ">This response is sent when a request conflicts with the current state of the server. This status code will usually appear when you're trying to create an already existing resource.</td>
</tr>

<tr>
<td data-title="Code: ">413</td>
<td data-title="Text: ">Payload Too Large</td>
<td data-title="Description: ">This indicates that the request entity is larger than limits defined by server. This status code will usually appear happen when uploading a file or function that is too large</td>
</tr>

<tr>
<td data-title="Code: ">416</td>
<td data-title="Text: ">Invalid Range</td>
Expand Down