Sandbox
Update configurations for sandbox jobs
Deductions
Documents
Management
Sandbox
- POSTCreate a new Sandbox Connection
- POSTCreate a new sandbox account
- PUTUpdate a sandbox account
- GETGet configurations for sandbox jobs
- PUTUpdate configurations for sandbox jobs
- POSTAdd a new sandbox payment
- PUTUpdate sandbox individual
- PUTUpdate sandbox employment
- POSTAdd new individuals to a sandbox company
- PUTUpdate a sandbox company's data
- POSTEnqueue a new sandbox job
Development Guides
Sandbox
Update configurations for sandbox jobs
PUT
/
sandbox
/
jobs
/
configuration
import Finch from '@tryfinch/finch-api';
const client = new Finch({
accessToken: 'My Access Token',
});
async function main() {
const sandboxJobConfiguration = await client.sandbox.jobs.configuration.update({
completion_status: 'complete',
type: 'data_sync_all',
});
console.log(sandboxJobConfiguration.completion_status);
}
main();
{
"type": "data_sync_all",
"completion_status": "complete"
}
Authorizations
Please use your Access Token
Body
application/json
Response
200 - application/json
OK
The response is of type object
.
Was this page helpful?
import Finch from '@tryfinch/finch-api';
const client = new Finch({
accessToken: 'My Access Token',
});
async function main() {
const sandboxJobConfiguration = await client.sandbox.jobs.configuration.update({
completion_status: 'complete',
type: 'data_sync_all',
});
console.log(sandboxJobConfiguration.completion_status);
}
main();
{
"type": "data_sync_all",
"completion_status": "complete"
}