Method: PlatformAPI::OrganizationApp#create

Defined in:
lib/platform-api/client.rb

#create(organization_name, body) ⇒ Object

Create a new organization app. Use this endpoint instead of the /apps endpoint when you want to create an app that will be owned by an organization in which you are a member, rather than your personal account.

Parameters:

  • organization_name:

    unique name of organization

  • body:

    the object to pass as the request payload



1038
1039
1040
# File 'lib/platform-api/client.rb', line 1038

def create(organization_name, body)
  @client.organization_app.create(organization_name, body)
end