Store
Query parameters
containerIdstringRequired
Responses
200Success
400
Generic Client Error
application/json
401
Authentication related errors:
- `GENERIC_UNAUTHORIZED`: Generic unauthorized access error.
- `SESSION_TOKEN_EXPIRED`: User session has expired.
- `REFRESH_TOKEN_EXPIRED`: Refresh token has expired.
application/json
404
Generic not found
application/json
500
Internal server error
application/json
get
GET /v1/store/balance?containerId=text HTTP/1.1
Host:
Accept: */*
No content
Query parameters
pagenumberOptional
limitnumberOptional
enrichRequirementsbooleanRequired
containerIdstringRequired
Responses
200Success
400
Generic Client Error
application/json
401
Authentication related errors:
- `GENERIC_UNAUTHORIZED`: Generic unauthorized access error.
- `SESSION_TOKEN_EXPIRED`: User session has expired.
- `REFRESH_TOKEN_EXPIRED`: Refresh token has expired.
application/json
404
Generic not found
application/json
500
Internal server error
application/json
get
GET /v1/store/listings?enrichRequirements=true&containerId=text HTTP/1.1
Host:
Accept: */*
No content
Query parameters
pagenumberOptional
limitnumberOptional
containerIdstringRequired
Responses
200Success
400
Generic Client Error
application/json
401
Authentication related errors:
- `GENERIC_UNAUTHORIZED`: Generic unauthorized access error.
- `SESSION_TOKEN_EXPIRED`: User session has expired.
- `REFRESH_TOKEN_EXPIRED`: Refresh token has expired.
application/json
404
Generic not found
application/json
500
Internal server error
application/json
get
GET /v1/store/purchase?containerId=text HTTP/1.1
Host:
Accept: */*
No content
Path parameters
listingIdstringRequired
Body
noncestringRequired
A one-use ID to associate with your request for purchase to avoid replays
Responses
201Success
400
Generic Client Error
application/json
401
Authentication related errors:
- `GENERIC_UNAUTHORIZED`: Generic unauthorized access error.
- `SESSION_TOKEN_EXPIRED`: User session has expired.
- `REFRESH_TOKEN_EXPIRED`: Refresh token has expired.
application/json
404
Generic not found
application/json
500
Internal server error
application/json
post
POST /v1/store/purchase/{listingId} HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 89
{
"nonce": "text",
"requirementData": [
{
"requirementId": "text",
"shouldSave": true,
"data": {}
}
]
}
No content
Last updated