salt-sdk
    Preparing search index...

    Type Alias CreateOrganisationParams

    Parameters for creating a new organisation.

    type CreateOrganisationParams = {
        collaborators?: CreateOrganisationCollaborator[];
        name: string;
        owner: { address: string; name: string; role: string };
        termsAcceptedVersion?: number;
    }
    Index

    Properties

    Optional list of collaborators to invite to the organisation. Each collaborator will receive an invitation with status "Invited".

    name: string

    The display name of the organisation (1-50 characters)

    'My Organisation'
    
    owner: { address: string; name: string; role: string }

    Details of the organisation owner (the authenticated user)

    Type Declaration

    • address: string

      Ethereum address of the owner

      '0x1234567890123456789012345678901234567890'
      
    • name: string

      Display name of the owner

    • role: string

      The owner's role within the organisation

      'CEO'
      
    termsAcceptedVersion?: number

    The version of the terms and conditions accepted. Defaults to 1.

    1