cURL
curl --request POST \ --url https://api.wizcommerce.com/auth/token \ --header 'Content-Type: application/json' \ --data ' { "email": "[email protected]", "password": "password123" } '
{ "token_id": "token_123", "token_type": "Bearer", "expires_at": "2026-01-01T00:00:00Z", "user": { "email": "[email protected]", "first_name": "John", "last_name": "Doe", "tenant_id": "tenant_456", "id": "user_123" }, "access_token": "api_prod_abc123..." }
Create a new API token for the authenticated user
access_token
X-API-Key
curl -X GET https://api.wizcommerce.com/v1/products \ -H "X-API-Key: YOUR_ACCESS_TOKEN_HERE"
Login credentials
"[email protected]"
"password123"
OK
"token_123"
"Bearer"
"2026-01-01T00:00:00Z"
Show child attributes
"api_prod_abc123..."
Was this page helpful?