Create a Customer Cart Association
POSThttps://useast.api.elasticpath.com/v2/carts/:cartID/relationships/customers
You can create associations between a customer and one or more carts. After cart associations exist for a customer, the customer can access those carts across any device.
Request
Path Parameters
cartID stringrequired
The ID for the cart created by the customer. Ensure that you follow the guidelines for Safe Characters.
Header Parameters
x-moltin-customer-token string
A customer token to access a specific customer's carts.
- application/json
Body
data undefined[]
Responses
- 200
- 401
OK
Response Headers
- application/json
- Schema
- Example (auto)
Schema
data undefined[]
{
"data": [
{
"id": "string",
"type": "string"
}
]
}
Unauthorized
- application/json
- Schema
- Example (auto)
- Example
Schema
detailstring
statusstring
titlestring
[
null
]
{
"errors": {
"status": 401,
"title": "Unauthorized"
}
}
Authorization: http
name: bearerAuthtype: httpscheme: bearer
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "https://useast.api.elasticpath.com/v2/carts/:cartID/relationships/customers");
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());
ResponseClear