Sandbox
Get 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
Get configurations for sandbox jobs
GET
/
sandbox
/
jobs
/
configuration
import Finch from '@tryfinch/finch-api';
const client = new Finch({
accessToken: 'My Access Token',
});
async function main() {
const sandboxJobConfigurations = await client.sandbox.jobs.configuration.retrieve();
console.log(sandboxJobConfigurations);
}
main();
[
{
"type": "data_sync_all",
"completion_status": "complete"
}
]
Authorizations
Please use your Access Token
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 sandboxJobConfigurations = await client.sandbox.jobs.configuration.retrieve();
console.log(sandboxJobConfigurations);
}
main();
[
{
"type": "data_sync_all",
"completion_status": "complete"
}
]