GET /members/{msisdn}/exists

Checks if the supplied MSISDN is a member of 6DOT50.

This operation will not return any additional details about the member if they exist. This is by design to protect the privacy of 6DOT50 members.

Request

Ensure the bearer token is included in the Header of the GET operation:

Header
Mandatory
Description

Authorization

Yes

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.

Example Response
{
  "msisdn": "27821231234",
  "isMember": false
}

Last updated