Skip to content
Joshua Harms edited this page Dec 20, 2023 · 1 revision

Users

Developers can retrieve users with the UserService.

The Users API requires a Shopify Plus subscription.

Listing Users

var service = new UserService(myShopifyUrl, shopAccessToken);
var users = await service.ListAsync();

Getting a User

var service = new UserService(myShopifyUrl, shopAccessToken);
var user = await service.GetAsync(userId):