How Can We Help?
10. What API GMiD™Box support?
There are two types of API supported by GMiD™Box.
- GMiD™Box API – custom REST API, you can find detailed explanations in attachment GMiD™Box_API.pdf, please refer to page 6 related to Responses. You will see that there are actually 2 types of responses. One is just with MobileID and another contains MobileID and MSISDN. Usually IPification is using the first one, just with MobileID (without MSISDN) because our policy is to keep user privacy and not to share private data. The second one (with MSISDN) is usually just for MNO purposes. You don’t need to ask the user to enter a phone number, you can just take it from GMiD™Box and login user automatically and collect all usage and history based on the MSISDN. When both values are present response looks like this:
{
“msisdn” : “381692023534”,
“mobile_id” : “2d90c1a5bff1e5274bae6ee2c1adbe5239bfe9cc79ecd67bf874a90784d790b4b8307f21168136913f729b9d66fd311d8df10f9f03c69ff1ff94d0a47b40b2ff”
}
When MSISDN is omitted then only MobileID is present.
2. IPification Cloud API – is actually OpenID Connect API (OIDC) and it looks like this:
{
“sub”: “007eda5e-d203-4a9e-ad71-38bec05a69f7”,
“preferred_username”: “2d90c1a5bff1e5274bae6ee2c1adbe5239bfe9cc79ecd67bf874a90784d790b4b8307f21168136913f729b9d66fd311d8df10f9f03c69ff1ff94d0a47b40b2ff”
}
