Skip to main content

Create an Account Cart Association

POST 

https://useast.api.elasticpath.com/v2/carts/:cartID/relationships/accounts

You can create associations between an account and one or more carts. After cart associations exist for an account, the account can access those carts across any device.

Request

Path Parameters

    cartID stringrequired

    The ID for the cart created by the account. Ensure that you follow the guidelines for Safe Characters.

Header Parameters

    EP-Account-Management-Authentication-Token string

    An Account Management Authentication token to access a specific account's carts.

Body

    data undefined[]
  • Array [
  • idstring

    The ID of the account.

    typestring

    The type of related object. Ensure that it is account.

  • ]

Responses

OK

Response Headers
    Schema
      data undefined[]
    • Array [
    • idstring

      The ID of the account.

      typestring

      The type of related object. Ensure that it is account.

    • ]

    Authorization: http

    name: bearerAuthtype: httpscheme: bearer
    var client = new HttpClient();
    var request = new HttpRequestMessage(HttpMethod.Post, "https://useast.api.elasticpath.com/v2/carts/:cartID/relationships/accounts");
    request.Headers.Add("Accept", "application/json");
    request.Headers.Add("Authorization", "Bearer <token>");
    var content = new StringContent("{\n \"data\": [\n {\n \"id\": \"string\",\n \"type\": \"string\"\n }\n ]\n}", null, "application/json");
    request.Content = content;
    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
    — header
    Body
    {
      "data": [
        {
          "id": "string",
          "type": "string"
        }
      ]
    }
    
    ResponseClear

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