Payments API now live! Read more at API Reference
curl --request GET \
--url https://platform.usewarp.net/api/user/profile \
--header 'Authorization: Bearer <token>'{
"profile": {
"id": "<string>",
"email": "jsmith@example.com",
"onboarding_completed": true,
"is_admin": true,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"first_name": "<string>",
"last_name": "<string>"
}
}Retrieve the current user’s profile information
curl --request GET \
--url https://platform.usewarp.net/api/user/profile \
--header 'Authorization: Bearer <token>'{
"profile": {
"id": "<string>",
"email": "jsmith@example.com",
"onboarding_completed": true,
"is_admin": true,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"first_name": "<string>",
"last_name": "<string>"
}
}Was this page helpful?