Skip to main content
POST
/
accounts
/
import
Add import
curl --request POST \
  --url https://api.quiva.ai/accounts/import \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "import": {
    "name": "<string>",
    "subject": "<string>",
    "account": "<string>",
    "token_position": 123
  }
}
'
{
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
import
object
required

Response

Import added successfully

message
string