GET web_api/mobile_consent/{phoneNumber}/records/{id}
Get a single consent record by its unique identifier
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
phoneNumber |
The phone number to search mobile consent records for should be included in the request body as a numeric value with no punctuation nor spaces. |
integer |
Required |
id |
The unique identifier of the single mobile consent record to get |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
The response body will include a list of all mobile consent records for the phone number.
GiactMobileConsentRecordName | Description | Type | Additional information |
---|---|---|---|
MobileConsentId |
The unique identifier for the mobile consent record |
integer |
None. |
RecordedConsent |
The recorded mobile consent details |
GiactMobileConsent |
None. |
RecordedDateTime |
The DateTime for when the consent was recorded |
date |
None. |
EndUserIpAddress |
IP address of the end user that gave consent. |
string |
None. |
IsCurrentlyValid |
If the consent is currently valid. Recorded consent can be revoked at any time by the request of the phone number owner. |
boolean |
None. |
Response Formats
application/json, text/json
Sample:
{ "MobileConsentId": 1, "RecordedConsent": { "PhoneNumber": "sample string 1", "ClientIpAddress": "sample string 2", "ConsentDescription": "sample string 3" }, "RecordedDateTime": "2025-04-28T07:18:03.0440663-05:00", "EndUserIpAddress": "sample string 3", "IsCurrentlyValid": true }
application/xml, text/xml
Sample:
<GiactMobileConsentRecord xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://api.giact.com/verificationservices/v5"> <EndUserIpAddress>sample string 3</EndUserIpAddress> <IsCurrentlyValid>true</IsCurrentlyValid> <MobileConsentId>1</MobileConsentId> <RecordedConsent> <ClientIpAddress>sample string 2</ClientIpAddress> <ConsentDescription>sample string 3</ConsentDescription> <PhoneNumber>sample string 1</PhoneNumber> </RecordedConsent> <RecordedDateTime>2025-04-28T07:18:03.0440663-05:00</RecordedDateTime> </GiactMobileConsentRecord>