POST api/{programid}/Employee/SetGPSConsentStatus
Sets the GPS Consent status for a provider/consumer pair.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
programid | string |
Required |
Body Parameters
SetProviderGPSConsentStatusRequestName | Description | Type | Additional information |
---|---|---|---|
EmployeeNo | string |
None. |
|
ConsumerNo | string |
None. |
|
EmployeeConsentProvided | byte |
None. |
|
EmployeeConsentDate | date |
None. |
|
EmployeeSignature | string |
None. |
|
ConsumerConsentProvided | byte |
None. |
|
ConsumerConsentDate | date |
None. |
|
ConsumerSignature | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "EmployeeNo": "sample string 1", "ConsumerNo": "sample string 2", "EmployeeConsentProvided": 64, "EmployeeConsentDate": "2025-06-23T12:36:25.6880806-04:00", "EmployeeSignature": "sample string 3", "ConsumerConsentProvided": 64, "ConsumerConsentDate": "2025-06-23T12:36:25.6880806-04:00", "ConsumerSignature": "sample string 4" }
application/xml, text/xml
Sample:
<SetProviderGPSConsentStatusRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PPL.Services.Models.WebAPI_DTO.Employee"> <ConsumerConsentDate>2025-06-23T12:36:25.6880806-04:00</ConsumerConsentDate> <ConsumerConsentProvided>64</ConsumerConsentProvided> <ConsumerNo>sample string 2</ConsumerNo> <ConsumerSignature>sample string 4</ConsumerSignature> <EmployeeConsentDate>2025-06-23T12:36:25.6880806-04:00</EmployeeConsentDate> <EmployeeConsentProvided>64</EmployeeConsentProvided> <EmployeeNo>sample string 1</EmployeeNo> <EmployeeSignature>sample string 3</EmployeeSignature> </SetProviderGPSConsentStatusRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>