Sign in

Create counterparty

documented

Create a new counterparty to transact with.

POST /counterpartiesCounterpartiesno 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://b2b.revolut.com/api/1.0/counterparty" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"profile_type": "business", "company_name": "{{$company_name}}", "bank_country": "{{$bank_country}}", "currency": "{{$currency}}", "revtag": "{{$revtag}}", "address": {"street_line1": "{{$street_line1}}", "street_line2": "{{$street_line2}}", "region": "{{$region}}", "city": "{{$city}}", "country": "{{$country}}", "postcode": "{{$postcode}}"}}'
Create counterparty · Revolut · OpenIntegrations