MassDispatchRepositoryCreate Method |
Start new shipment
POST /Shipment
Content-Type: application/json
Body: {"ODataUri":"http://someserver/OData","DataSourceId":"123","TemplateId":"456"}
Theoretically, this body can also be {"ODataUri":"http://someserver/OData","ProcessId":"123"}
Response will contain unique ID which allows to track shipment on our side.
Namespace: Scanjour.Workflow4.Web.Services.RepositoriesAssembly: Scanjour.Workflow4.Web.Services (in Scanjour.Workflow4.Web.Services.dll) Version: 24.5.0.0 (24.5.0.0)
Syntaxpublic string Create(
string requestBody
)
Public Function Create (
requestBody As String
) As String
public:
String^ Create(
String^ requestBody
)
member Create :
requestBody : string -> string
Parameters
- requestBody String
- A serialized JSON with request body. You can use the method GetJsonRequestBody(Object) to serialize it with proper settings.
Return Value
StringId of the shipment in PDF mass shipment service.
See Also