curl --request PUT \
--url https://api.skulabs.com/item/bulk_upsert \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"items": [
{}
]
}'
/item/bulk_upsert
curl --request PUT \
--url https://api.skulabs.com/item/bulk_upsert \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"items": [
{}
]
}'
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
OK