GET web_api/mobile_consent/{phoneNumber}/records/{id}

Retrieve a single mobile consent record by its unique identifier.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
phoneNumber

The phone number associated with the consent record, provided as a numeric value in the URL path.

integer

Required

id

The unique identifier of the mobile consent record to retrieve.

integer

Required

Body Parameters

None.

Response Information

Resource Description

The response body will include the requested object.

GiactMobileConsentRecord
NameDescriptionTypeAdditional 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": "2026-06-27T12:32:01.3477107-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>2026-06-27T12:32:01.3477107-05:00</RecordedDateTime>
</GiactMobileConsentRecord>