Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 481 Bytes

user.md

File metadata and controls

18 lines (13 loc) · 481 Bytes

User

The user endpoint allows you to retrieve information about the user associated with the API key you are using. You can find the LemonSqueezy link here

Retrieve User

use lemonsqueezy::user::User;

// lemonsqueezy is an instance of the struct LemonSqueezy
let user = User::build(lemonsqueezy);
let user = user.retrieve().await.unwrap();

Quick Links