Skip to main content
PATCH
/
applications
/
bulk
/
move
Bulk move applications to stage
curl --request PATCH \
  --url https://api.gospott.com/applications/bulk/move \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "applicationSelection": {
    "type": "included",
    "includedApplicationIds": [
      "<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
applicationSelection
object
required

Application selection criteria for bulk operations

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