improved

Enhanced response object for organization details

We added new properties to the response object of the Organization Details endpoint.

Organization Details

We have added additional properties to the endpoint GET /organizations/{organizationId}. This information is beneficial if you want to

  1. allow users to access data about their bank account (processingAccount)for top-up payments (relevant for pre-funded organizations only)
  2. check what organization name is printed on the physical cards (tradeName) in cases where either the organization's name is too long (isCompanyNamePrintable == true) or customers simply opted to choose another company name to be printed on the cards.

💡Additionally we fixed a bug where the paymentFrequency property was set to MONTHLY for organizations with accountType == PREFUNDED

Here is the list of all properties that have been added to the response:

  "nationalRegisterCourt": "string",
  "nationalRegisterId": "string",
  "nationalRegisterType": "string",
  "tradeRegisterNumber": "string"
  "vatId": "string",
  "billingEmail": "string",
  "billingAddress": {
    "id": "string",
    "type": "BILLING",
    "country": "string",
    "city": "string",
    "postalCode": "string",
    "street": "string",
    "streetName": "string",
    "streetNumber": "string",
    "streetAdditional": "string"
  },
  "deliveryAddress": {
    "id": "string",
    "type": "BILLING",
    "country": "string",
    "city": "string",
    "postalCode": "string",
    "street": "string",
    "streetName": "string",
    "streetNumber": "string",
    "streetAdditional": "string"
  },
  "isCompanyNamePrintable": boolean,
  "processingAccount": {
    "beneficiary": "string",
    "bankName": "string",
    "iban": "string",
    "bic": "string"
  }