PUT
/
sandbox
/
jobs
/
configuration
import Finch from '@tryfinch/finch-api';

const client = new Finch({
  accessToken: 'My Access Token',
});

const sandboxJobConfiguration = await client.sandbox.jobs.configuration.update({
  completion_status: 'complete',
  type: 'data_sync_all',
});

console.log(sandboxJobConfiguration.completion_status);
{
  "type": "data_sync_all",
  "completion_status": "complete"
}

Authorizations

Authorization
string
header
required

Please use your Access Token

Body

application/json

Response

200 - application/json

OK

The response is of type object.