POST v1/Employees/IssueFingercheckPayCard
Generate and link a Pay Card for specific Employee, parameter is EmployeePayCardData Object. Employee Number is the Data Key for proper updating.
Request Information
URI Parameters
None.
Body Parameters
The EmployeePayCardData Object.
EmployeePayCardData| Name | Description | Type | Additional information |
|---|---|---|---|
| EmployeeNumber | string |
Required |
|
| CalculationType | DDCalculationType |
Required |
|
| Amount | decimal number |
Required |
|
| ModifiedOn | date |
None. |
|
| UseNewAddress | boolean |
Required |
|
| Address1 | string |
Required |
|
| Address2 | string |
Required |
|
| City | string |
Required |
|
| State | string |
Required |
|
| Zip | string |
Required |
|
| CardID |
Enter a Card ID if you want to register existing card. Leave blank to issue new card. |
string |
Required |
Request Formats
application/json, text/json
Sample:
{
"EmployeeNumber": "sample string 1",
"CalculationType": 0,
"Amount": 2.0,
"ModifiedOn": "2026-05-13T23:32:10.1137735-04:00",
"UseNewAddress": true,
"Address1": "sample string 5",
"Address2": "sample string 6",
"City": "sample string 7",
"State": "sample string 8",
"Zip": "sample string 9",
"CardID": "sample string 10"
}
application/xml, text/xml
Sample:
<EmployeePayCardData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BDBPayroll.TimeAttendance.WebAPI.Models"> <Address1>sample string 5</Address1> <Address2>sample string 6</Address2> <Amount>2</Amount> <CalculationType>Flat</CalculationType> <CardID>sample string 10</CardID> <City>sample string 7</City> <EmployeeNumber>sample string 1</EmployeeNumber> <ModifiedOn>2026-05-13T23:32:10.1137735-04:00</ModifiedOn> <State>sample string 8</State> <UseNewAddress>true</UseNewAddress> <Zip>sample string 9</Zip> </EmployeePayCardData>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |