Request
Send your HTTP requests with an Authorization
header that contains the word Basic followed by a space and a base64-encoded string username:password Example:Authorization: Basic *****************
Request Code Samples
curl --location --request POST '/customers/b8d5eba9-94fa-47cb-bdcf-3b193cbfbdca/registrations' \
--header 'Authorization: Basic <encoded-value>'
Responses
application/json {
"id": "b8d5eba9-94fa-47cb-bdcf-3b193cbfbdca",
"firstName": "Iago",
"lastName": "Senefonte",
"documentNumber": "43278243803",
"status": "REGISTERED",
"registeredAt": "2024-07-19T13:57:35.807Z",
"registrationUrl": null
}
Modified at 2024-07-24 14:00:50