Skip to content

Commit

Permalink
Site updated to 767641d
Browse files Browse the repository at this point in the history
  • Loading branch information
OmodaraAdonai committed Oct 17, 2023
1 parent 5eb9cc6 commit 726df27
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
3 changes: 0 additions & 3 deletions assessment.html
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ <h3 id="working-with-greenhouse-to-implement-the-integration">Working with Green
<li>URL for your <code class="prettyprint">list_tests</code> API call</li>
<li>URL for your <code class="prettyprint">send_test</code> API call</li>
<li>URL for your <code class="prettyprint">test_status</code> API call</li>
<li>URL for your <code class="prettyprint">response_error</code> API call</li>
<li>A sample API key</li>
</ol>

Expand Down Expand Up @@ -161,8 +160,6 @@ <h2 id="assessment-api-change-log">Assessment API Change Log</h2>
<td>Date</td><td>Description</td></tr>
</thead><tbody>
<tr>
<td>Oct 13, 2023 3:00:00PM</td><td>Added URL for <code class="prettyprint">response_error</code> as a requirement in <a href="#introduction">Introduction</a></td></tr>
<tr>
<td>Aug 22, 2023 3:00:00PM</td><td>Fixed URL expiry timing in <a href="#send-test">Send Test</a></td></tr>
<tr>
<td>Aug 21, 2019 2:00:00PM</td><td>Added Change Log and General Consideration sections to the Assessment API documentation</td></tr>
Expand Down
6 changes: 4 additions & 2 deletions harvest.html
Original file line number Diff line number Diff line change
Expand Up @@ -164,13 +164,13 @@ <h3 id="setting-permissions-for-api-keys">Setting permissions for API Keys</h3>

<p>To add or remove endpoint permissions on an API key, go to the Dev Center in Greenhouse, click &ldquo;API Credential Management,&rdquo; then click &ldquo;Manage Permissions&rdquo; next to your Harvest API Key. From there, check or uncheck permissions for any endpoints.</p>

<h2 id="throttling">Throttling</h2>
<h2 id="rate-limiting">Rate limiting</h2>
<pre class="highlight plaintext"><code>Status: 200 OK
X-RateLimit-Limit: 50
X-RateLimit-Remaining: 49
</code></pre>

<p>API requests are limited to the amount specified in the returned <code class="prettyprint">X-RateLimit-Limit</code> header (per 10 seconds). Exceeding that limit will cause Harvest to return an <code class="prettyprint">HTTP 429</code> response. Check the <code class="prettyprint">X-RateLimit-Limit</code> and <code class="prettyprint">X-RateLimit-Remaining</code> headers to see how many more requests you are allowed until throttling kicks in. Note that the <code class="prettyprint">HTTP 429</code> response will exclude the <code class="prettyprint">X-RateLimit-Limit</code> and <code class="prettyprint">X-RateLimit-Remaining</code> headers.</p>
<p>Harvest API requests are limited to the amount specified in the returned <code class="prettyprint">X-RateLimit-Limit</code> header, per 10 seconds. Check the <code class="prettyprint">X-RateLimit-Limit</code> and <code class="prettyprint">X-RateLimit-Remaining</code> headers to see how many more requests are permitted before you&rsquo;re throttled. Exceeding the limit will return an <code class="prettyprint">HTTP 429</code> response. In the <code class="prettyprint">HTTP 429</code> response, the <code class="prettyprint">Retry-After</code> header includes an Epoch / Unix timestamp indicating when you can try again.</p>

<h2 id="pagination">Pagination</h2>

Expand Down Expand Up @@ -263,6 +263,8 @@ <h2 id="harvest-change-log">Harvest Change Log</h2>
<td>Date</td><td>Description</td></tr>
</thead><tbody>
<tr>
<td>Oct 12, 2023 2:15:00PM</td><td>Updated Throttling section to Rate limiting and updated description</td></tr>
<tr>
<td>Aug 22, 2023 3:00:00PM</td><td>Included <code class="prettyprint">active</code> attribute in the <a href="#the-job-stage-object">Job Stage Object</a></td></tr>
<tr>
<td>Aug 22, 2023 3:00:00PM</td><td>Fixed URL expiry timing in <a href="#general-considerations">General Considerations</a> and the <a href="#the-candidate-object">Candidate Object</a></td></tr>
Expand Down

0 comments on commit 726df27

Please sign in to comment.