Get Member (Credentials)

Get Member Details Using Credentials

This method will return a member's details using the member's email and password.

Once an API key, email, password, product ID, or channel ID are sent, the response will show the status of a member. [status: 1 = active] - if the response does not include 'status' or if 'status' is not equal to '1', then credentials are wrong or the user does not have access.

PATH

https://app.productdyno.com/api/v1/members/get-by-credentials

METHOD

GET

PARAMETERS

_api_key
email
password
product_id OR channel_id

EXAMPLE JSON RESPONSE

{
  "member_id": 73,
  "first_name": "John",
  "last_name": "Doe",
  "email": "john.doe@productdyno.com",
  "payment_gateway_ids": [123, 456],
  "status": 1
}