Skip to content

Get Person Detail

GET
/api/person/{record_id}
curl --request GET \
--url http://localhost:8000/api/person/1 \
--header 'Authorization: Bearer <token>'

Get full person intel record by ID.

record_id
required
Record Id
integer

Successful Response

Media typeapplication/json
Examplegenerated
example

Validation Error

Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
ctx
Context
object
input
Input
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{
"detail": [
{
"ctx": {},
"input": "example",
"loc": [
"example"
],
"msg": "example",
"type": "example"
}
]
}