Create a file
documentedUploads a file (e.g., identity, by-laws, KBIS) for a given registration.
POST /register/registrations/{registrationId}/filesFilesno implementation yet0 runsNo 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://thirdparty-sandbox.staging.qonto.co/register/registrations/{{$registrationId}}/files" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Qonto-Partner-Id: {{QONTO_API_KEY}}" \
-H "X-Qonto-Staging-Token: {{QONTO_SANDBOX_TOKEN}}" \
-H "Accept: application/json" \
-F "file=@{{$file_path}}" \
-F "file_type={{$file_type}}" \
-F "stakeholder_id={{$stakeholder_id}}"