Skip to main content
POST
/
market
/
pull
cURL
curl --request POST \
  --url https://api.vaultcord.com/market/pull \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "orderId": "HR-a59c162b-a7c6-47bb-9322-10651eeeae68"
}'
{
  "success": true,
  "message": "Successfully pulled members!"
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Details for pulling your member marketplace order

orderId
string
required

The Order ID you would like to start pulling members from

Example:

"HR-a59c162b-a7c6-47bb-9322-10651eeeae68"

Response

200 - application/json

Successfully pulled marketplace member order

success
boolean
Example:

true

message
string
Example:

"Successfully pulled members!"

I