GET web_api/mobile_consent/{phoneNumber}/records

Retrieve all mobile consent records for a specified phone number.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
phoneNumber

The phone number to retrieve consent records for, provided as a numeric value in the URL path.

integer

Required

Body Parameters

None.

Response Information

Resource Description

The response body will include a list of all objects for the specified phone number.

Collection of 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:31:28.5899184-05:00",
    "EndUserIpAddress": "sample string 3",
    "IsCurrentlyValid": true
  },
  {
    "MobileConsentId": 1,
    "RecordedConsent": {
      "PhoneNumber": "sample string 1",
      "ClientIpAddress": "sample string 2",
      "ConsentDescription": "sample string 3"
    },
    "RecordedDateTime": "2026-06-27T12:31:28.5899184-05:00",
    "EndUserIpAddress": "sample string 3",
    "IsCurrentlyValid": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfGiactMobileConsentRecord xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://api.giact.com/verificationservices/v5">
  <GiactMobileConsentRecord>
    <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:31:28.5899184-05:00</RecordedDateTime>
  </GiactMobileConsentRecord>
  <GiactMobileConsentRecord>
    <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:31:28.5899184-05:00</RecordedDateTime>
  </GiactMobileConsentRecord>
</ArrayOfGiactMobileConsentRecord>