Sign in

Create Contact

documented

Register a new contact (report) with details such as time, attendees, type, and related fields.

POST /reportsコンタクトAPIno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.sansan.com/v6.0/reports" \
  -X POST \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "X-Sansan-App-Id: {{CORP-SANSAN_APP_ID}}" \
  -H "X-Sansan-Api-Key: {{CORP-SANSAN_API_KEY}}" \
  -d '{"startTime": "{{$startTime}}", "endTime": "{{$endTime}}", "externalAttendees": [ { "companyName": "{{$external_companyName}}", "lastName": "{{$external_lastName}}", "firstName": "{{$external_firstName}}", "email": "{{$external_email}}" } ], "internalAttendeeUserIds": [ "{{$internal_user_id}}" ], "type": "{{$type}}", "title": "{{$title}}", "location": "{{$location}}", "memo": "{{$memo}}" }'