App Manifest Workflow Tasks
App Manifest tasks are used to create and update App Manifests via workflows.
Create App Manifest
task: "AppManifest/Create@1"
name: createAppManifest
inputs:
organizationId: "{{ organizationId }}"
appManifest:
name: "My App Manifest"
# additional AppManifest fields
outputs:
- name: result
mapping: "result"
Inputs
organizationId(int, required): The organization ID.appManifest(object, required): The App Manifest values to create (mapped toCreateAppManifestCommandValues).
Outputs
result: The created App Manifest.
Update App Manifest
task: "AppManifest/Update@1"
name: updateAppManifest
inputs:
organizationId: "{{ organizationId }}"
appManifestId: "{{ appManifestId }}"
appManifest:
name: "Updated Name"
# additional AppManifest fields
outputs:
- name: result
mapping: "result"
Inputs
organizationId(int, required): The organization ID.appManifestId(guid, required): The ID of the App Manifest to update.appManifest(object, required): The App Manifest values to update (mapped toUpdateAppManifestCommandValues).
Outputs
result: The updated App Manifest.