Alternate Asset Endpoints
Create a new SDIRA investment
POST
/
sdira
/
investments
Body
curl --request POST \
--url https://sandbox.featherhq.com/sdira/investments \
--header 'Content-Type: application/json' \
--data '{
"account_id": "<string>",
"asset_id": "<string>",
"currency": "<string>",
"direction": "BUY",
"payment_info": {
"account_number": "<string>",
"bank_account_type": "<string>",
"bank_name": "<string>",
"routing_number": "<string>"
},
"quantity": "<string>"
}'
{
"account_id": "abc-123",
"asset_id": "MSFT",
"currency": "USD",
"direction": "BUY",
"investment_id": "abcd-1234-efgh-5678",
"quantity": 100,
"status": "RECEIVED"
}
Body
application/json
account_id
string
asset_id
string
currency
string
direction
enum<string>
Available options:
BUY
, SELL
payment_info
object
quantity
string
Response
201 - application/json
account_id
string
asset_id
string
currency
string
direction
enum<string>
Available options:
BUY
, SELL
investment_id
string
quantity
integer
status
enum<string>
Available options:
RECEIVED
, FUNDING
, PROCESSING
, COMPLETE
, REJECTED
curl --request POST \
--url https://sandbox.featherhq.com/sdira/investments \
--header 'Content-Type: application/json' \
--data '{
"account_id": "<string>",
"asset_id": "<string>",
"currency": "<string>",
"direction": "BUY",
"payment_info": {
"account_number": "<string>",
"bank_account_type": "<string>",
"bank_name": "<string>",
"routing_number": "<string>"
},
"quantity": "<string>"
}'
{
"account_id": "abc-123",
"asset_id": "MSFT",
"currency": "USD",
"direction": "BUY",
"investment_id": "abcd-1234-efgh-5678",
"quantity": 100,
"status": "RECEIVED"
}