Identities

Upload a corrected POV

Replace a single POV (point-of-view) image of an identity with a corrected upload. The image is validated to contain exactly one face and normalized to 1024x1024. Only accessible if the user uploaded the identity or belongs to a group that has access. No credits are charged.

POST
/identity/{identity_code}/pov

Authorization

token_auth
AuthorizationBearer <token>

Token-based authentication using access tokens.

In: header

Path Parameters

identity_code*string

Request Body

multipart/form-data

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X POST "https://v2.api.piktid.com/identity/string/pov" \  -F image="string" \  -F pov_index="0"
{
  "success": true,
  "pov_index": 0,
  "processed_images": [
    {
      "original_filename": "string",
      "link": "string",
      "thumbnail_link": null
    }
  ],
  "processed_count": 0
}
{
  "error": "Invalid request",
  "detail": [
    {
      "field": null,
      "message": "string",
      "position": "query"
    }
  ]
}
Empty
Empty
Empty
Empty