Skip to main content
PATCH
/
applications
/
bulk
/
move
Move multiple applications to a stage
curl --request PATCH \
  --url https://api.gospott.com/applications/bulk/move \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "applicationIds": [
    "<string>"
  ],
  "stageId": "<string>",
  "statusId": "<string>"
}
'

Authorizations

x-api-key
string
header
required

API key for authentication. Get your API key from Settings → API Keys in your Spott dashboard.

Body

application/json
applicationIds
string[]
required

Array of application IDs to move

stageId
string
required

The ID of the target stage to move all applications to

statusId
string | null

Optional status ID to set on all applications after moving. Pass null to clear the status.

Response

Applications moved successfully