Skip to main content
POST
/
asset
/
bulk
/
deletesplit
Delete splits for multiple assets
curl --request POST \
  --url https://server26-dot-royalti-project.uc.r.appspot.com/asset/bulk/deletesplit \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "assets": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ],
  "userIds": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ]
}'
{
  "success": true,
  "message": "<string>",
  "data": {}
}
Delete splits for multiple assets in a single request. Request Body:
  • assets (array): Array of asset IDs
  • userIds (array): Array of user IDs to remove splits for

Authentication

This endpoint requires authentication. Include your bearer token in the Authorization header.

Request Body

Request Schema

FieldTypeRequiredDescription
assetsarray
userIdsarray

Responses

✅ 200 - Splits deleted successfully

⚠️ 400 - undefined

⚠️ 401 - undefined

❌ 500 - undefined

Tags

Asset

Authorizations

Authorization
string
header
required

JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"

Body

application/json
assets
string<uuid>[]
userIds
string<uuid>[]

Response

Splits deleted successfully

success
boolean
Example:

true

message
string
data
object
I