Returns a sample payload for the schema by schema Id.
Last updated
GET /schema/{schemaId}/sample-payload
Returns a sample payload for the schema by schema ID.
Authentication: Bearer token required (Authorization: Bearer <token>)
Permission: No specific permission required (authentication only)
schemaId
String
Yes
Schema ID
Status: 200 OK
Returns a sample JSON payload conforming to the schema document definition.
{
"field1": "example value",
"field2": 0,
"field3": true
}401 Unauthorized
Missing or invalid token
403 Forbidden
Insufficient permissions
500 Internal Server Error
Unexpected server failure
Last updated