Skip to main content
PUT
/
applications
/
{id}
/
move
Move application to a different stage
curl --request PUT \
  --url https://api.gospott.com/applications/{id}/move \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "stageId": "<string>",
  "statusId": "<string>",
  "position": {
    "previousId": "<string>",
    "nextId": "<string>"
  }
}
'

Authorizations

x-api-key
string
header
required

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

Path Parameters

id
string
required

Body

application/json
stageId
string
required

The ID of the target stage to move the application to

statusId
string | null

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

position
object

Optional position specification for ordering within the target stage. Use previousId and nextId to place the application between two other applications.

Response

Application moved successfully