PureSpectrum
PureSpectrum websiteHelp center
PureSpectrum websiteHelp center
  1. Transactions
  • Back to home
  • API Reference
  • Feasibility
    • Feasibility & Pricing
  • Attributes
    • Get attribute (V3)
    • Get attributes (V3)
  • Surveys
    • Create survey
    • Get similar surveys
    • Create group multi-country surveys
    • Update survey
    • Update survey
    • Update survey status
    • Update offer price
    • Update group multi-country surveys
    • Get survey information
    • Get survey status
    • Get survey performance
    • Get list of all surveys
    • Surveys health status
    • Pacing details
    • Delete survey
  • Qualifications
    • Add qualification
    • Update qualification
    • Get qualification information
    • Get all qualifications
    • Delete qualification
  • Quotas
    • Add quota
    • Update quota
    • Update quota
    • Get quota information
    • Get quota performance
    • Delete quota
  • Survey group exclusions
    • Create exclusion group
    • Update exclusion group
    • Get exclusion group information
    • Delete exclusion group
  • Respondent inclusion / exclusion
    • Add a PSIDref list to a survey
    • Update a PSIDref for survey
    • Get PSIDref list for survey
  • Supplier management
    • Create supplier blend
    • Update the list of suppliers for a survey
    • Get list of available suppliers in a locale
    • Get list of available suppliers for a survey
    • Get list of supplier blends
  • Traffic Channels
    • Create traffic channel
    • Get a list of traffic channels
  • Transactions
    • Update status of transaction (V2)
      POST
    • Update status of transaction (V3)
      POST
    • Register transaction as complete
      POST
    • Get transaction status (V3)
      GET
    • Get transaction info (V3)
      GET
    • Get transactions info for a survey ID (V3)
      GET
  • Reconciliation
    • Survey reconciliation
    • Multi survey reconciliation
    • Get status of a reconciliation request
    • Get reconciliation status for an adjustment ID
  • PureText
    • PureText Open-ended (OE) check (V3)
  • Activity logs
    • Get activity logs
    • Get events
  • Templates
    • Get survey templates
  1. Transactions

Register transaction as complete

POST
/complete
Last modified:2025-09-16 21:04:05

Description#

This endpoint will take a transaction ID as a body request param and will set it as complete.
This endpoint is using the following API endpoints.
Staging: https://staging.spectrumsurveys.com/complete
Production: https://api.spectrumsurveys.com/complete

Request

Authorization
Add parameter in header
access-token
Example:
access-token: ********************
Body Params application/json

Example
{
    "transaction_id": "3BYxLzF6H49er7Ms5ep1CD"
}

Request Code Samples

Shell
JavaScript
Java
Go
PHP
Python
C#
Ruby
Request Request Example
Shell
JavaScript
Java
Go
curl --location 'https://staging.spectrumsurveys.com/complete' \
--header 'access-token: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
    "transaction_id": "3BYxLzF6H49er7Ms5ep1CD"
}'

Responses

🟢200Success
application/json
Bodyapplication/json

Example
{}
🟠404Record Not Found
🟠401Unauthorized
Modified at 2025-09-16 21:04:05
Previous
Update status of transaction (V3)
Next
Get transaction status (V3)