Account
This method is used to retrieve information about the email addresses associated with user accounts. Each email address entry provides essential details about the email address, such as its verification status, whether it is the primary email for the user, and the associated user ID.
Query parameter email
used to filter results based on specific conditions.
Query parameter id
used to filter results based on specific conditions.
Filters records where id
is greater than the given value.
Filters records where id
is greater than or equal to the given value.
Filters records where id
is less than the given value.
Filters records where id
is less than or equal to the given value.
Limits the number of results returned in the response.
Query parameter page
used to filter results based on specific conditions.
Query parameter primary
used to filter results based on specific conditions.
Query parameter sort
used to filter results based on specific conditions.
Query parameter user
used to filter results based on specific conditions.
Query parameter verified
used to filter results based on specific conditions.
GET /api/v1/remote/1/data-warehouse/account/email-addresses/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
Successful response for status code 200.
{
"count": 123,
"next": "http://api.example.org/accounts/?page=4",
"previous": "http://api.example.org/accounts/?page=2",
"results": [
{
"email": "[email protected]",
"id": 1,
"primary": true,
"user": 1,
"verified": true
}
]
}
This method is used to retrieve information about the email addresses associated with user accounts. Each email address entry provides essential details about the email address, such as its verification status, whether it is the primary email for the user, and the associated user ID. This endpoint retrieves a specific record by its unique identifier.
A unique integer value identifying this e-posta adresi.
GET /api/v1/remote/1/data-warehouse/account/email-addresses/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"email": "[email protected]",
"id": 1,
"primary": true,
"user": 1,
"verified": true
}
Was this helpful?