GET /members/{msisdn}/exists
Checks if the supplied MSISDN is a member of 6DOT50.
Request
Ensure the bearer token is included in the Header of the GET operation:
Header
Mandatory
Description
Parameter
Mandatory
Description
msisdn
Yes
The MSISDN to query. Ensure it is in international format, e.g. 27821231234
Response
The response will return whether the supplied MSISDN is a member or not:
{
"msisdn": "string",
"isMember": boolean
}
Field
Response Type
Description
msisdn
string
The msisdn queried
isMember
boolean
If returns as true
, then the user is a member of 6DOT50.
{
"msisdn": "27821231234",
"isMember": false
}
Last updated