SwapTarget
Consistent identity - Upload target image
Deprecation notice
This endpoint is deprecated. We recommend using alternative endpoints to ensure continued support and compatibility.
Reserved for premium users
Example:
import requests
import json
url_api = 'https://api.piktid.com/api'
target_full_path = 'url_of_your_target_image'
options = {}
response = requests.post(url_api+'/swap/target',
headers={'Authorization': 'Bearer '+TOKEN},
files={'target': open(target_full_path, 'rb')},
data={'options':json.dumps(options)},
)
target_name = response_json = json.loads(response.text).get('target_name')Authorization
token_auth_2 AuthorizationBearer <token>
In: header
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
application/json
application/json
curl -X POST "https://api.piktid.com/api/swap/target" \ -H "Content-Type: application/json" \ -d '{}'{
"target_name": "string"
}{
"code": 0,
"message": "string",
"description": "string"
}{
"code": 0,
"message": "string",
"description": "string"
}{
"code": 0,
"message": "string",
"description": "string"
}