Get Record Status

Retrieve the current status of a single record.

POSThttps://secure-api.setshape.com/api/get/lead/status/{crmid}

Replace {crmid} with your Shape system ID — found on the API Integrations page. Every request also needs your auth header — see Using Shape APIs.

Both GET and POST route to this action; POST is the established public example.

Body parameters

Field Description
lead_id Shape record ID.

Example request

curl -X POST https://secure-api.setshape.com/api/get/lead/status/{crmid} 
  -H "Authorization: {YOUR_API_AUTHORIZATION_KEY}" 
  -H "Content-Type: application/json" 
  -d '{ "lead_id": 123 }'
{
  "lead_id": 123
}