api_operations_buy_operation_complete_partial_update
PATCH /api/operations/buy-operation/:op_uuid/complete/:verification_secret/
api_operations_buy_operation_complete_partial_update
Path Parameters
- op_uuid string required
- verification_secret string required
- application/json
- application/x-www-form-urlencoded
- multipart/form-data
Request Body
customer object
Request Body
customer object
Request Body
customer object
Responses
- 200
- application/json
- Schema
- Example (from schema)
Schema
customer object required
{
"customer": {
"first_name": "string",
"last_name": "string",
"postal_code": "string",
"selfie": "string",
"doc_front_image": "string",
"doc_back_image": "string",
"doc_type": "dni",
"doc_bill_proof": "string",
"country": "string"
}
}
Authorization
name: jwtAuthtype: httpscheme: bearerbearerFormat: JWT
Request
Request
curl / cURL
curl -L -X PATCH 'https://docs.kubepay.io/api/operations/buy-operation/:op_uuid/complete/:verification_secret/' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"customer": {
"first_name": "string",
"last_name": "string",
"postal_code": "string",
"selfie": "string",
"doc_front_image": "string",
"doc_back_image": "string",
"doc_type": "dni",
"doc_bill_proof": "string",
"country": "string"
}
}'
python / requests
curl -L -X PATCH 'https://docs.kubepay.io/api/operations/buy-operation/:op_uuid/complete/:verification_secret/' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"customer": {
"first_name": "string",
"last_name": "string",
"postal_code": "string",
"selfie": "string",
"doc_front_image": "string",
"doc_back_image": "string",
"doc_type": "dni",
"doc_bill_proof": "string",
"country": "string"
}
}'
go / native
curl -L -X PATCH 'https://docs.kubepay.io/api/operations/buy-operation/:op_uuid/complete/:verification_secret/' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"customer": {
"first_name": "string",
"last_name": "string",
"postal_code": "string",
"selfie": "string",
"doc_front_image": "string",
"doc_back_image": "string",
"doc_type": "dni",
"doc_bill_proof": "string",
"country": "string"
}
}'
nodejs / axios
curl -L -X PATCH 'https://docs.kubepay.io/api/operations/buy-operation/:op_uuid/complete/:verification_secret/' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"customer": {
"first_name": "string",
"last_name": "string",
"postal_code": "string",
"selfie": "string",
"doc_front_image": "string",
"doc_back_image": "string",
"doc_type": "dni",
"doc_bill_proof": "string",
"country": "string"
}
}'
ruby / Net::HTTP
curl -L -X PATCH 'https://docs.kubepay.io/api/operations/buy-operation/:op_uuid/complete/:verification_secret/' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"customer": {
"first_name": "string",
"last_name": "string",
"postal_code": "string",
"selfie": "string",
"doc_front_image": "string",
"doc_back_image": "string",
"doc_type": "dni",
"doc_bill_proof": "string",
"country": "string"
}
}'
csharp / RestSharp
curl -L -X PATCH 'https://docs.kubepay.io/api/operations/buy-operation/:op_uuid/complete/:verification_secret/' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"customer": {
"first_name": "string",
"last_name": "string",
"postal_code": "string",
"selfie": "string",
"doc_front_image": "string",
"doc_back_image": "string",
"doc_type": "dni",
"doc_bill_proof": "string",
"country": "string"
}
}'
php / cURL
curl -L -X PATCH 'https://docs.kubepay.io/api/operations/buy-operation/:op_uuid/complete/:verification_secret/' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"customer": {
"first_name": "string",
"last_name": "string",
"postal_code": "string",
"selfie": "string",
"doc_front_image": "string",
"doc_back_image": "string",
"doc_type": "dni",
"doc_bill_proof": "string",
"country": "string"
}
}'
java / OkHttp
curl -L -X PATCH 'https://docs.kubepay.io/api/operations/buy-operation/:op_uuid/complete/:verification_secret/' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"customer": {
"first_name": "string",
"last_name": "string",
"postal_code": "string",
"selfie": "string",
"doc_front_image": "string",
"doc_back_image": "string",
"doc_type": "dni",
"doc_bill_proof": "string",
"country": "string"
}
}'
powershell / RestMethod
curl -L -X PATCH 'https://docs.kubepay.io/api/operations/buy-operation/:op_uuid/complete/:verification_secret/' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"customer": {
"first_name": "string",
"last_name": "string",
"postal_code": "string",
"selfie": "string",
"doc_front_image": "string",
"doc_back_image": "string",
"doc_type": "dni",
"doc_bill_proof": "string",
"country": "string"
}
}'