Method: ApplicationsClient#create_applications

Defined in:
lib/lockstep_sdk/clients/applications_client.rb

#create_applications(body:) ⇒ Object

Creates one or more Applications and returns the records as created. Applications are universal and available across all accounts.

An Application represents a feature available to customers within the Lockstep Platform. You can create Applications by working with your Lockstep business development manager and publish them on the platform so that customers can browse and find your Application on the Lockstep Platform Marketplace. When a customer adds an Application to their account, they obtain an AppEnrollment which represents that customer’s instance of this Application. The customer-specific AppEnrollment contains a customer’s configuration data for the Application, which is not customer-specific.

See [Applications and Enrollments](developer.lockstep.io/docs/applications-and-enrollments) for more information.

Parameters:

  • body (ApplicationModel)

    The Applications to create



79
80
81
82
# File 'lib/lockstep_sdk/clients/applications_client.rb', line 79

def create_applications(body:)
    path = "/api/v1/Applications"
    @connection.request(:post, path, body, nil)
end