| name | data type | description |
|---|---|---|
| userId | string | |
| organizationId | string | |
| offerId | string | |
| servicesToAdd | array of ServiceToAddDto | |
| creditLimits | array of CreditLimitDto | |
| subscriptionDate | number |
Example
{
"userId" : "...",
"organizationId" : "...",
"offerId" : "...",
"servicesToAdd" : [ {
"serviceId" : "...",
"subscriptionDate" : 12345,
"param1" : "...",
"param2" : "...",
"param3" : "..."
}, {
"serviceId" : "...",
"subscriptionDate" : 12345,
"param1" : "...",
"param2" : "...",
"param3" : "..."
} ],
"creditLimits" : [ {
"organizationId" : "...",
"creditLimit" : 12345.0
}, {
"organizationId" : "...",
"creditLimit" : 12345.0
} ],
"subscriptionDate" : 12345
}