POST api/v1/cards/{cardId}/print
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| cardId | globally unique identifier |
Required |
Body Parameters
CardPrintDto| Name | Description | Type | Additional information |
|---|---|---|---|
| OrganizationCode | string |
None. |
|
| PrinterCode | string |
None. |
|
| CardId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"organizationCode": "sample string 1",
"printerCode": "sample string 2",
"cardId": "bd6eefe2-c671-41f9-87a6-b3944964c59f"
}
application/xml, text/xml
Sample:
<CardPrintDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Application.Services.Dtos"> <CardId>bd6eefe2-c671-41f9-87a6-b3944964c59f</CardId> <OrganizationCode>sample string 1</OrganizationCode> <PrinterCode>sample string 2</PrinterCode> </CardPrintDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.