Skip to main content

Get an Account Member

GET 

https://useast.api.elasticpath.com/v2/account-members/:accountMemberID

Get an account member from your store

Request

Path Parameters

    accountMemberID uuidrequired

    The unique identifier of the account member that you want to retrieve.

Responses

OK

Schema
    data object
    iduuid

    The unique identifier for the account member.

    Example: 908f7849-60da-4e4a-a3b1-51d4cbe3b953
    typestring

    The type of the object that is returned.

    Default value: account_member
    namestring

    The name of the account member.

    Example: Ron Swanson
    emailstring

    The email address of the account member.

    Example: ron@swanson.com
    meta object
    timestamps object
    created_atstring

    The date the account is created.

    Example: 2021-02-23T09:40:33.882Z
    updated_atstring

    The date the account is updated.

    Example: 2021-02-23T09:40:33.882Z
    links object
    selfstring

    A URL to the specific resource.

    Example: https://useast.api.elasticpath.com/v2/account-members/908f7849-60da-4e4a-a3b1-51d4cbe3b953

Authorization: http

name: BearerTokentype: httpscheme: bearer
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://useast.api.elasticpath.com/v2/account-members/:accountMemberID");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "Bearer <token>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://useast.api.elasticpath.com
Auth
Parameters
— pathrequired
ResponseClear

Click the Send API Request button above and see the response here!