Last updated 11 months ago
Partner sign in
OK
Partner impersonate user
body
const response = await fetch('/mobile-bff/v1/auth/partner/token/', { method: 'POST', headers: { "authorization": "text" }, }); const data = await response.json();
{ "access_token": "text", "refresh_token": "text", "type": "text" }
const response = await fetch('/mobile-bff/v1/auth/partner/impersonate/', { method: 'POST', headers: { "authorization": "text", "Content-Type": "application/json" }, body: JSON.stringify({ "customer_id": "text", "user_id": "text" }), }); const data = await response.json();