cURL
curl --request POST \
--url https://api.getprofile-ai.com/v1/profile/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"data": "<string>",
"input_type": "<string>"
}
'{
"id": "<string>",
"message": "<string>"
}Profile API
Update Profile
Creates or updates a profile in the GetProfile API by its ID
POST
/
v1
/
profile
/
{id}
cURL
curl --request POST \
--url https://api.getprofile-ai.com/v1/profile/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"data": "<string>",
"input_type": "<string>"
}
'{
"id": "<string>",
"message": "<string>"
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
The unique identifier of the profile
Body
application/json
Data to extract a profile from
⌘I