Organizations

Organizations

When integrating with the Fortress APIs, you'll be assigned an organization that will act as your identifier and Auth reference for all subsequent calls. Additionally, a webhook-config will be established across your entire organization that will help you build a scalable solution for your business by informing you of any asynchronous changes in the API.

๐Ÿ“˜

Update Webhook-Config

After you receive your Organization credentials, make a PATCH call to update the webhook-server URL and change the notification types you'll want to receive

PATCH /api/organization/v1/current-organization/webhook-config
{
  "url": "https://webhook.site/a5k730Q4"
  "webhookTypes": [
    "payment", "transaction", "nft", "kyc", "document", "custodialAccount"
  ]
}

Whatโ€™s Next