/services/webshop/v1/customer/profile/get
Auth
Returns the full profile of the currently authenticated customer, including default billing/shipping address snapshots and email verification status.
| Header | Type | Description | Example |
|---|---|---|---|
X-RateLimit-Limit |
integer | Maximum number of requests allowed per minute | 60 |
X-RateLimit-Remaining |
integer | Number of requests remaining in the current window | 57 |
| Field | Type | Description |
|---|---|---|
error |
boolean | |
message |
string | |
data |
object | |
data.customer |
object | |
data.countries |
object | Shared country list (code => label) so the dashboard can render the same country select as checkout without a second API call. |
| Header | Type | Description | Example |
|---|---|---|---|
X-RateLimit-Limit |
integer | Maximum number of requests allowed per minute | 60 |
X-RateLimit-Remaining |
integer | Number of requests remaining in the current window | 57 |
| Field | Type | Description |
|---|---|---|
error |
boolean | |
message |
string |
| Header | Type | Description | Example |
|---|---|---|---|
X-RateLimit-Limit |
integer | Maximum number of requests allowed per minute | 60 |
X-RateLimit-Remaining |
integer | Number of requests remaining in the current window | 57 |
Retry-After |
integer | Seconds until the rate limit resets | 60 |
| Field | Type | Description |
|---|---|---|
error |
boolean | |
message |
string |
curl -X POST "https://api.wemasy.nl/api/services/webshop/v1/customer/profile/get" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json"
fetch('https://api.wemasy.nl/api/services/webshop/v1/customer/profile/get', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json' }})
.then(r => r.json())
.then(data => console.log(data));
$response = Http::withToken('YOUR_API_TOKEN')
->accept('application/json')
->post('https://api.wemasy.nl/api/services/webshop/v1/customer/profile/get');
$data = $response->json();
import requests
headers = {
"Authorization": "Bearer YOUR_API_TOKEN",
"Accept": "application/json"
}
r = requests.post("https://api.wemasy.nl/api/services/webshop/v1/customer/profile/get", headers=headers)
print(r.json())
{
"customer": {
"id": 42,
"project_id": 1,
"email": "jane@example.com",
"firstname": "Jane",
"lastname": "Doe",
"phone": "+31612345678",
"account_type": "private",
"company": null,
"tax_number": null,
"email_verified_at": null,
"default_billing": null,
"default_shipping": null,
"cart_reminder_consent_active": false,
"created_at": "2026-04-22T10:30:00.000000Z"
}
}