POST api/MRB
Method generates eMRB document
Request Information
URI Parameters
None.
Body Parameters
ProjectDocumentDetailDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| ProjectId | integer |
None. |
|
| ProjectNoRev | string |
None. |
|
| ModuleId | globally unique identifier |
None. |
|
| ModuleName | string |
None. |
|
| UserId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"ProjectId": 1,
"ProjectNoRev": "sample string 2",
"ModuleId": "d609fd0d-6b8e-4af4-a98d-8d6b6239ee90",
"ModuleName": "sample string 4",
"UserId": "ab0b7fe9-a0b1-4613-8c3f-8f69015d5ab6"
}
application/xml, text/xml
Sample:
<ProjectDocumentDetailDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/eMRB.Domain.DTO"> <ModuleId>d609fd0d-6b8e-4af4-a98d-8d6b6239ee90</ModuleId> <ModuleName>sample string 4</ModuleName> <ProjectId>1</ProjectId> <ProjectNoRev>sample string 2</ProjectNoRev> <UserId>ab0b7fe9-a0b1-4613-8c3f-8f69015d5ab6</UserId> </ProjectDocumentDetailDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Handle to async task generating document.
stringResponse Formats
application/json, text/json
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>