Skip to main content
GET
/
phone
Get Phone Number
const options = {method: 'GET'};

fetch('https://gp-auth-module.prod.gnosispay.com/phone', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "phone": "<string>"
}

Response

Phone number retrieved successfully

phone
string
required