bruno/memori-backend/User/Creates a new user.bru

72 lines
1.4 KiB
Plaintext
Raw Normal View History

2024-07-16 10:15:30 +02:00
meta {
2025-03-26 15:08:31 +01:00
name: Creates a new user.
2024-07-16 10:15:30 +02:00
type: http
2025-03-26 15:08:31 +01:00
seq: 4
2024-07-16 10:15:30 +02:00
}
post {
2025-03-26 15:08:31 +01:00
url: {{baseUrl}}/api/v2/User/:strToken
2024-07-16 10:15:30 +02:00
body: json
auth: none
}
2025-03-26 15:08:31 +01:00
params:path {
strToken:
}
2024-07-16 10:15:30 +02:00
body:json {
{
"tenant": "",
"userID": "",
"userName": "",
"password": "",
"newPassword": "",
"eMail": "",
"avatarURL": "",
"avatar3DURL": "",
"avatar3DURLType": "",
"dontSendInvitationEmail": "",
"referral": "",
"couponCode": "",
"newsletterSubscribed": "",
2025-03-26 15:08:31 +01:00
"notificationPrefs": [
{
"chatLogExtractionPeriod": "",
"chatLogExtractionMinLines": "",
"memoriID": ""
}
],
2024-07-16 10:15:30 +02:00
"admin": "",
"superAdmin": "",
"numMemori": "",
"maxMemori": "",
"monthSessions": "",
"monthValidSessions": "",
"monthDeepThoughtValidSessions": "",
"maxFreeSessions": "",
"nonFreeSessionCost": "",
"monthCompletions": "",
"monthDeepThoughtCompletions": "",
"monthImportedSize": "",
"maxCompletions": "",
"maxImportSize": "",
"paying": "",
"enableMemoriCreation": "",
"enableBoardOfExperts": "",
"enableDCMIntegration": "",
"enableBadges": "",
"enableDeepThought": "",
"enableVirtualSpaces": "",
"birthDate": "",
"age": "",
"tnCAndPPAccepted": "",
"tnCAndPPAcceptanceDate": "",
"pAndCUAccepted": "",
"pAndCUAcceptanceDate": "",
"verificationCode": "",
"flowID": "",
"creationTimestamp": "",
"lastChangeTimestamp": ""
}
}