Like what you see? Have a play with our trial version.

Error rendering macro 'rw-search'

null

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

A new Client Organization can be created using the POST /api/orgs (https://developers.yellowfinbi.com/dev/api-docs/current/#operation/createOrg ) end-pointCreate Org. This end-point accepts the following payload:

Code Block
{

...



  "clientRefId": "CLIENT5",

...



  "name": "Client 5",

...



  "defaultTimezone": "AUSTRALIA/SYDNEY",

...



  "customStylePath": "client5stylePath"

...



}

The clientRefId attribute is the primary identifier for the new tenant. The name attribute is the display name for the new tenant. The defaultTimezone attribute specifies the timezone for the new tenant, but this is not mandatory. A tenant will inherit the primary organization’s timezone if this is not set. The customStylePath defines a directory where custom styles and images will be stored for this tenant. This is not mandatory.

The following code examples create a new Client Organization:Java | C# | Go | JavaScript | PHP | Python

Code Block
languagejava
titleJava
collapsetrue
Code Block
languagec#
titleC#
collapsetrue
Code Block
titleGo
collapsetrue
Code Block
languagejs
titleJavaScript
collapsetrue
Code Block
languagephp
titlePHP
collapsetrue
Code Block
languagepy
titlePython
collapsetrue


List all Tenants / Client Organizations

...