Sandbox
Update sandbox individual
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 sandbox individual
PUT
/
sandbox
/
individual
/
{individual_id}
import Finch from '@tryfinch/finch-api';
const client = new Finch({
accessToken: 'My Access Token',
});
async function main() {
const individual = await client.sandbox.individual.update('individual_id');
console.log(individual.id);
}
main();
{
"first_name": "<string>",
"middle_name": "<string>",
"last_name": "<string>",
"preferred_name": "<string>",
"emails": [
{
"data": "<string>",
"type": "work"
}
],
"phone_numbers": [
{
"data": "<string>",
"type": "work"
}
],
"gender": "female",
"ethnicity": "asian",
"dob": "<string>",
"ssn": "<string>",
"encrypted_ssn": "<string>",
"residence": {
"line1": "<string>",
"line2": "<string>",
"city": "<string>",
"state": "<string>",
"postal_code": "<string>",
"country": "<string>",
"name": "<string>",
"source_id": "<string>"
},
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
Authorizations
Please use your Access Token
Path Parameters
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 individual = await client.sandbox.individual.update('individual_id');
console.log(individual.id);
}
main();
{
"first_name": "<string>",
"middle_name": "<string>",
"last_name": "<string>",
"preferred_name": "<string>",
"emails": [
{
"data": "<string>",
"type": "work"
}
],
"phone_numbers": [
{
"data": "<string>",
"type": "work"
}
],
"gender": "female",
"ethnicity": "asian",
"dob": "<string>",
"ssn": "<string>",
"encrypted_ssn": "<string>",
"residence": {
"line1": "<string>",
"line2": "<string>",
"city": "<string>",
"state": "<string>",
"postal_code": "<string>",
"country": "<string>",
"name": "<string>",
"source_id": "<string>"
},
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}