Get an Account Membership
GEThttps://useast.api.elasticpath.com/v2/accounts/:accountID/account-memberships/:membershipID
Get an account membership from an account in your store
Request
Path Parameters
accountID stringrequired
The unique identifier of the account that the account member is associated with.
membershipID stringrequired
The unique identifier of the account membership to update the details of the account member.
Responses
- 200
- 404
OK
- application/json
- Schema
- Example (from schema)
Schema
data AccountMembershipResponse
{
"data": {
"id": "24e939f6-178f-497b-9d64-5bf2b5a70a2e",
"type": "account_membership",
"meta": {
"timestamps": {
"created_at": "2021-02-23T09:40:33.882Z",
"updated_at": "2021-02-23T09:40:33.882Z"
}
},
"relationships": {
"account_member": {
"data": {
"id": "9e227208-b592-49c0-8c8f-043b66c634b0",
"type": "account_member"
}
}
},
"links": {
"self": "https://useast.api.elasticpath.com/v2/accounts/5b495058-9ffc-4b9b-810a-c9d43ffc6500/account-memberships/24e939f6-178f-497b-9d64-5bf2b5a70a2e"
}
}
}
Not Found
- application/json
- Schema
- Example (from schema)
- not-found-error
Schema
errors Error[]required
{
"errors": [
{
"status": "string",
"title": "string",
"detail": "string"
}
]
}
{
"errors": [
{
"status": "404",
"title": "Not Found",
"detail": "account not found"
}
]
}
Authorization: http
name: BearerTokentype: httpscheme: bearer
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X GET 'https://useast.api.elasticpath.com/v2/accounts/:accountID/account-memberships/:membershipID' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'
ResponseClear