Year in Date Field
Tuesday, July 10, 2018 at 05:19amIs it possible to break down the date into Year, Month and Date into 3 different columns using REST APIs?
OneSpan Introduces DigipassONE, Bringing a Unified Platform Approach to Authentication Modernization
A new authentication platform helps financial institutions support diverse customer authentication preferences while modernizing at their own pace Learn More
Reply to: Year in Date Field
Tuesday, July 10, 2018 at 06:14amGET /api/packages/{packageId}/documents/{documentId}/approvals/{approvalId}The response payload could look like this:{ "role": "66da473d-3717-4ff7-bf85-f7f134e73be4", "id": "BYT22iCrsCYD", "optional": false, "accepted": "2018-07-10T14:47:58Z", "signed": "2018-07-10T14:47:59Z", "data": null, "fields": [ { "binding": "{approval.signed}", "validation": null, "id": "TCb173e6x08A", "page": 0, "subtype": "LABEL", "height": 37, "width": 165, "left": 458, "top": 287, "extract": false, "extractAnchor": null, "data": null, "type": "INPUT", "value": "yyyy-MM-dd HH:mm:ss 'GMT'", "name": "" }, { "binding": null, "validation": null, "id": "k1VrxYhqUm0Q", "page": 0, "subtype": "FULLNAME", "height": 37, "width": 165, "left": 161, "top": 287, "extract": false, "extractAnchor": null, "data": null, "type": "SIGNATURE", "value": "", "name": "" } ], "name": "" }As you noticed, the "accepted" attribute is the date stamp shown on the document.( not signed attribute) Then you can deal with the String with the programming language your system is using to retrieve the Year/Month/Date. Hope this reply could help you!Reply to: Year in Date Field
Tuesday, July 10, 2018 at 06:41amReply to: Year in Date Field
Tuesday, July 10, 2018 at 08:17am