- Credit
- Get Started
- Get Started APP
- Api Reference
- Auth
- Users
- Clients
- Banks
- Files
- searchPOST
- fIndGET
- auditsPOST
- list-by-organizationGET
- get-meGET
- required-fieldsGET
- basic-createPOST
- createPOST
- create-legalPOST
- updatePUT
- update-legalPUT
- get-client-banksGET
- get-client-operationsGET
- get-client-requestsGET
- get-client-filesGET
- finalize-registrationPUT
- change-statusPOST
- change-client-groupPOST
- change-client-userPOST
- reset-passwordPOST
- update-client-representativePATCH
- credit-analysis-validationPATCH
- additional-informationGET
- create-client-from-onboardingPOST
- client-validationGET
- Banks
- Requests
- Operations
- Credit Analysis
- Supplires
- Auth
- Enums
audits
POST
/api/v1/clients/{organization_uuid}/{uuid}/audits
Requisição
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Exemplo:
Authorization: Bearer ********************
Parâmetros Path
organization_uuid
string
requerido
uuid
string
requerido
Parâmetros Header
Accept
string
opcional
Padrão:
application/json
Content-Type
string
opcional
Padrão:
application/json
Respostas
🟢200Success
application/json
Body
array of:
id
integer
opcional
user_type
string
opcional
user_id
string
opcional
event
string
opcional
auditable_type
string
opcional
auditable_id
integer
opcional
old_values
array
opcional
new_values
object
opcional
name
string
requerido
email
string
requerido
taxid_number
string
requerido
type
string
requerido
organization_uuid
string
requerido
status
string
requerido
uuid
string
requerido
id
integer
requerido
url
string
opcional
ip_address
string
opcional
user_agent
string
opcional
tags
null
opcional
created_at
string
opcional
updated_at
string
opcional
Exemplo
[
{
"id": 155,
"user_type": "App\\Models\\User",
"user_id": "677a35cd-cd49-4339-8a25-1aef24803ee0",
"event": "created",
"auditable_type": "App\\Models\\Client\\Client",
"auditable_id": 6,
"old_values": [],
"new_values": {
"name": "Natan. Você É Legal.",
"email": "natan.inovanti@gmail.com",
"taxid_number": "63239124904",
"type": "physical",
"organization_uuid": "c0b61bfd-0eda-5694-87c3-d049a9684b19",
"status": "creating",
"uuid": "19f4a0fd-d0aa-5d34-9773-66e2fe7e988c",
"id": 6
},
"url": "http://localhost:8000/api/v1/clients/basic",
"ip_address": "127.0.0.1",
"user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36",
"tags": null,
"created_at": "2024-07-22T17:01:52.000000Z",
"updated_at": "2024-07-22T17:01:52.000000Z"
}
]
Modified at 2025-02-19 17:29:08