Skip to content

Add Portfolio Address

POST
/api/v1/portfolios/{portfolio_id}/addresses
curl --request POST \
--url https://api.qeychain.xyz/api/v1/portfolios/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/addresses \
--header 'Content-Type: application/json' \
--data '{ "address": "example", "label": "example", "chain": "example" }'

Add an address to a portfolio.

portfolio_id
required
Portfolio Id
string format: uuid
Media typeapplication/json
AddPortfolioAddressRequest

Request to add an address to a portfolio.

object
address
required
Address

Wallet address to add

string
label
Any of:
string
<= 255 characters
chain
Any of:
string
<= 50 characters
Examplegenerated
{
"address": "example",
"label": "example",
"chain": "example"
}

Successful Response

Media typeapplication/json
Response Add Portfolio Address Api V1 Portfolios Portfolio Id Addresses Post
object
key
additional properties
any
Examplegenerated
{}

Validation Error

Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example"
}
]
}