Skip to main content
GET
/
scanner
/
api
/
v1
/
captures
/
{public_id}
/
proposals
List enrichment proposals
curl --request GET \
  --url https://www.closient.com/scanner/api/v1/captures/{public_id}/proposals \
  --cookie sessionid=
[
  {
    "id": 123,
    "field_name": "<string>",
    "current_value": "<string>",
    "proposed_value": "<string>",
    "confidence": "<string>",
    "reasoning": "<string>",
    "source": "<string>",
    "status": "<string>",
    "created": "2023-11-07T05:31:56Z",
    "reviewed_at": "2023-11-07T05:31:56Z"
  }
]

Authorizations

sessionid
string
cookie
required

Path Parameters

public_id
string
required

Unique capture public_id identifier.

Response

OK

id
integer
required

Unique proposal identifier.

field_name
string
required

Product field targeted by this proposal.

current_value
string
required

Current value of the field.

proposed_value
string
required

AI-suggested replacement value.

confidence
string
required

Confidence score from 0.0 to 1.0.

Pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
reasoning
string
required

Explanation of why this change was proposed.

source
string
required

Data source used to generate this proposal.

status
string
required

Review status: PENDING, ACCEPTED, or REJECTED.

created
string<date-time>
required

Timestamp when the proposal was generated.

reviewed_at
string<date-time> | null

Timestamp when the proposal was reviewed.