Skip to main content
GET
/
public
/
payment-intents
/
{paymentIntentId}
/
service
/
status
Get service status for a payment intent
curl --request GET \
  --url https://api.prod.commenda.io/api/v1/public/payment-intents/{paymentIntentId}/service/status \
  --header 'x-api-key: <api-key>'
{
  "paymentIntentId": "pi_123",
  "service": {
    "id": "sr_123",
    "corporationId": 44,
    "companyLegalName": "Acme LLC",
    "steps": [
      {
        "name": "Formation documents",
        "status": "NOT_STARTED",
        "createdAt": "2026-03-01T00:00:00.000Z",
        "lastUpdatedAt": "2026-03-02T00:00:00.000Z"
      }
    ]
  }
}
Returns the linked service request summary and the current task-group level progress for the underlying incorporation workflow.

Authorizations

x-api-key
string
header
required

Path Parameters

paymentIntentId
string
required

Payment intent identifier returned by POST /public/services.

Response

Service status retrieved successfully

paymentIntentId
string
required
Example:

"pi_123"

service
object
required