PUT

Total: 11 methods Methods to duplicate Forms (2 methods):

duplicateFormDefinitionNewId: id
"This method is called by Orbeon when a user click 'Send' in a Form Instance page"
    | orbeonInstance |
    <put>
    <produces: 'application/xml'>
    <path: '/crud/orbeon/builder/data/{1}/data.xml'>
duplicateFormInstance: formName app: app newId: id
"This method is called by Orbeon when a user click 'Send' in a Form Instance page"
    | orbeonInstance |
    <put>
    <produces: 'application/xml'>
    <path: '/crud/{2}/{1}/data/{3}/data.xml'>

Methods to Publish Forms (2 methods):

publishFormDefinition: formName app: app withId: documentId
"This method is called by Orbeon when a Form Definition has been published with form name <formName> in application <app> with form id <documentId>"
    | orbeonDefinition headerVersion currentVersion |
    <put>
    <consumes: 'application/xml'>
    <path: '/crud/{2}/{1}/form/form.xhtml?document={3}'>

Methods for Attachments Operations (4 methods):

Methods to Save Forms (3 methods):

Last updated