Partially updates a brand by ID.
curl --request PATCH \
--url http://ca-delogue-service-prod.bravepebble-62e34dbe.westeurope.azurecontainerapps.io/api/brands/{id} \
--header 'Content-Type: application/json-patch+json' \
--data '
[
{
"path": "<string>",
"value": "<unknown>"
}
]
'import requests
url = "http://ca-delogue-service-prod.bravepebble-62e34dbe.westeurope.azurecontainerapps.io/api/brands/{id}"
payload = [
{
"path": "<string>",
"value": "<unknown>"
}
]
headers = {"Content-Type": "application/json-patch+json"}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {'Content-Type': 'application/json-patch+json'},
body: JSON.stringify([{path: '<string>', value: '<unknown>'}])
};
fetch('http://ca-delogue-service-prod.bravepebble-62e34dbe.westeurope.azurecontainerapps.io/api/brands/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "http://ca-delogue-service-prod.bravepebble-62e34dbe.westeurope.azurecontainerapps.io/api/brands/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
[
'path' => '<string>',
'value' => '<unknown>'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json-patch+json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "http://ca-delogue-service-prod.bravepebble-62e34dbe.westeurope.azurecontainerapps.io/api/brands/{id}"
payload := strings.NewReader("[\n {\n \"path\": \"<string>\",\n \"value\": \"<unknown>\"\n }\n]")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Content-Type", "application/json-patch+json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("http://ca-delogue-service-prod.bravepebble-62e34dbe.westeurope.azurecontainerapps.io/api/brands/{id}")
.header("Content-Type", "application/json-patch+json")
.body("[\n {\n \"path\": \"<string>\",\n \"value\": \"<unknown>\"\n }\n]")
.asString();require 'uri'
require 'net/http'
url = URI("http://ca-delogue-service-prod.bravepebble-62e34dbe.westeurope.azurecontainerapps.io/api/brands/{id}")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Patch.new(url)
request["Content-Type"] = 'application/json-patch+json'
request.body = "[\n {\n \"path\": \"<string>\",\n \"value\": \"<unknown>\"\n }\n]"
response = http.request(request)
puts response.read_body{
"status": "<unknown>",
"code": "<string>",
"data": {
"id": 123,
"name": "<string>",
"organizationId": 123,
"state": "<unknown>",
"properties": [
"<string>"
],
"address": "<string>",
"zipCode": "<string>",
"city": "<string>",
"stateOrProvince": "<string>",
"country": {
"id": 123,
"name": "<string>",
"code": "<string>"
},
"logo": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"url": "<string>",
"metadata": "<string>",
"size": 123,
"fileWidth": 123,
"fileHeight": 123,
"provider": "<string>",
"createdBy": {
"loginId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"email": "<string>",
"organizationId": 123,
"organizationTypeId": 123,
"organizationType": "<unknown>",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"activeUsersLimit": 123,
"firstName": "<string>",
"lastName": "<string>",
"password": "<string>",
"status": 123,
"organization": {
"name": "<string>",
"id": 123,
"typeId": 123,
"address": "<string>",
"zipCode": "<string>",
"city": "<string>",
"stateOrRegion": "<string>",
"webSite": "<string>",
"phoneNumber": "<string>",
"faxNumber": "<string>",
"vatNumber": "<string>",
"localCurrency": {
"id": 123,
"countryCurrency": "<string>",
"currencyCode": "<string>",
"value": 123,
"isActive": true,
"name": "<string>"
},
"country": {
"id": 123,
"name": "<string>",
"code": "<string>"
},
"isActive": true,
"isUniqueStyleNumber": true,
"isAutoStyleNumberOn": true,
"isStyleNumberGeneratorActive": true,
"userDefinedSupplierId": "<string>",
"modules": [
{
"id": 123,
"key": 123,
"name": "<string>"
}
],
"createdDate": "2023-11-07T05:31:56Z",
"expiryDate": "2023-11-07T05:31:56Z",
"companyType": {
"id": 123,
"name": "<string>"
},
"brands": [
{
"name": "<string>",
"id": 123,
"organizationId": 123,
"status": true,
"address": "<string>",
"zipCode": "<string>",
"city": "<string>",
"state": "<string>",
"country": {
"id": 123,
"name": "<string>",
"code": "<string>"
},
"logo": "<unknown>",
"isDeleted": true,
"deletedOn": "2023-11-07T05:31:56Z",
"marginFactor": 123,
"userDefinedId": "<string>",
"logoThumbnails": "<array>",
"brandLogoUrl": "<string>"
}
],
"styleServiceDetails": {
"id": 123,
"organizationId": 123,
"serviceUrl": "<string>",
"userName": "<string>",
"password": "<string>",
"authenticationEndPoint": "<string>",
"type": "<unknown>",
"entityType": "<unknown>",
"webServiceType": "<unknown>",
"isReadyForExportAfterScheduledExport": true,
"isReadyForExportAfterExportNow": true,
"transportCredientialType": "<unknown>",
"serviceButtonName": "<string>"
},
"ftpStyleExportTime": {
"id": 123,
"organizationId": 123,
"utcHour": 123,
"utcMinute": 123,
"entityType": "<unknown>",
"limitPerFile": 123,
"recurringInterval": 123,
"hangfireSceduledJobId": "<string>",
"hangfireRecurringJobId": "<string>"
},
"itemServiceDetails": {
"id": 123,
"organizationId": 123,
"serviceUrl": "<string>",
"userName": "<string>",
"password": "<string>",
"authenticationEndPoint": "<string>",
"type": "<unknown>",
"entityType": "<unknown>",
"webServiceType": "<unknown>",
"isReadyForExportAfterScheduledExport": true,
"isReadyForExportAfterExportNow": true,
"transportCredientialType": "<unknown>",
"serviceButtonName": "<string>"
},
"ftpItemExportTime": {
"id": 123,
"organizationId": 123,
"utcHour": 123,
"utcMinute": 123,
"entityType": "<unknown>",
"limitPerFile": 123,
"recurringInterval": 123,
"hangfireSceduledJobId": "<string>",
"hangfireRecurringJobId": "<string>"
},
"supplierServiceDetails": {
"id": 123,
"organizationId": 123,
"serviceUrl": "<string>",
"userName": "<string>",
"password": "<string>",
"authenticationEndPoint": "<string>",
"type": "<unknown>",
"entityType": "<unknown>",
"webServiceType": "<unknown>",
"isReadyForExportAfterScheduledExport": true,
"isReadyForExportAfterExportNow": true,
"transportCredientialType": "<unknown>",
"serviceButtonName": "<string>"
},
"isStyleSupplier": true,
"isItemSupplier": true,
"priceSettings": {
"id": 123,
"organizationId": 123,
"useFuturePrice": true,
"useSimulatePrice": true,
"supplierSimulatePriceRights": "<unknown>",
"lockSupplierOnStylePriceApproval": true
},
"rootFolderToSync": "<string>",
"supplierPortalEnabled": true,
"inviteCode": "<string>",
"hubSpotRecordID": "<string>",
"auth0OrgId": "<string>",
"isAuth0Eligible": true,
"brandNames": [
"<string>"
]
},
"designerOrganization": {
"contactPerson": "<string>",
"contactEmail": "<string>",
"name": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"integrationEmail": "<string>",
"activeUsersLimit": 500,
"planType": {
"id": 123,
"name": "<string>"
},
"planTier": {
"id": 123,
"name": "<string>",
"modules": [
{
"id": 123,
"key": 123,
"name": "<string>"
}
]
},
"logo": "<unknown>",
"useLogoInEmailNotification": true,
"isChurned": true,
"onboardingStartDate": "2023-11-07T05:31:56Z",
"onboardingStatus": 123,
"organizationSettings": {
"unit": 123,
"organizationId": 123,
"hideInActiveSampleType": true,
"hideInActiveCompanyUser": true,
"isSupplierNameWithId": true,
"isShowSupplierFacilities": true,
"styleSupplierFacilityCount": 123,
"isShowMainItemInStyleItemList": true,
"searchAllStylesOrItems": true,
"saveIllustratorFilesLocally": true,
"allowSizeDescriptionFreeText": true,
"enableStyleFilterBarcodeSearch": true,
"setFocusOnStyleBarcodeSearch": true,
"useFraction": true,
"lastQualityTopicNumber": 123,
"showStylesForActiveSeasonsOnIllustrator": true,
"spyIntegrationVersion": 123,
"spyWebhooksEnabled": true
},
"id": 123,
"typeId": 123,
"address": "<string>",
"zipCode": "<string>",
"city": "<string>",
"stateOrRegion": "<string>",
"webSite": "<string>",
"phoneNumber": "<string>",
"faxNumber": "<string>",
"vatNumber": "<string>",
"localCurrency": {
"id": 123,
"countryCurrency": "<string>",
"currencyCode": "<string>",
"value": 123,
"isActive": true,
"name": "<string>"
},
"country": {
"id": 123,
"name": "<string>",
"code": "<string>"
},
"isActive": true,
"isUniqueStyleNumber": true,
"isAutoStyleNumberOn": true,
"isStyleNumberGeneratorActive": true,
"userDefinedSupplierId": "<string>",
"modules": [
{
"id": 123,
"key": 123,
"name": "<string>"
}
],
"createdDate": "2023-11-07T05:31:56Z",
"expiryDate": "2023-11-07T05:31:56Z",
"companyType": {
"id": 123,
"name": "<string>"
},
"brands": [
{
"name": "<string>",
"id": 123,
"organizationId": 123,
"status": true,
"address": "<string>",
"zipCode": "<string>",
"city": "<string>",
"state": "<string>",
"country": {
"id": 123,
"name": "<string>",
"code": "<string>"
},
"logo": "<unknown>",
"isDeleted": true,
"deletedOn": "2023-11-07T05:31:56Z",
"marginFactor": 123,
"userDefinedId": "<string>",
"logoThumbnails": "<array>",
"brandLogoUrl": "<string>"
}
],
"styleServiceDetails": {
"id": 123,
"organizationId": 123,
"serviceUrl": "<string>",
"userName": "<string>",
"password": "<string>",
"authenticationEndPoint": "<string>",
"type": "<unknown>",
"entityType": "<unknown>",
"webServiceType": "<unknown>",
"isReadyForExportAfterScheduledExport": true,
"isReadyForExportAfterExportNow": true,
"transportCredientialType": "<unknown>",
"serviceButtonName": "<string>"
},
"ftpStyleExportTime": {
"id": 123,
"organizationId": 123,
"utcHour": 123,
"utcMinute": 123,
"entityType": "<unknown>",
"limitPerFile": 123,
"recurringInterval": 123,
"hangfireSceduledJobId": "<string>",
"hangfireRecurringJobId": "<string>"
},
"itemServiceDetails": {
"id": 123,
"organizationId": 123,
"serviceUrl": "<string>",
"userName": "<string>",
"password": "<string>",
"authenticationEndPoint": "<string>",
"type": "<unknown>",
"entityType": "<unknown>",
"webServiceType": "<unknown>",
"isReadyForExportAfterScheduledExport": true,
"isReadyForExportAfterExportNow": true,
"transportCredientialType": "<unknown>",
"serviceButtonName": "<string>"
},
"ftpItemExportTime": {
"id": 123,
"organizationId": 123,
"utcHour": 123,
"utcMinute": 123,
"entityType": "<unknown>",
"limitPerFile": 123,
"recurringInterval": 123,
"hangfireSceduledJobId": "<string>",
"hangfireRecurringJobId": "<string>"
},
"supplierServiceDetails": {
"id": 123,
"organizationId": 123,
"serviceUrl": "<string>",
"userName": "<string>",
"password": "<string>",
"authenticationEndPoint": "<string>",
"type": "<unknown>",
"entityType": "<unknown>",
"webServiceType": "<unknown>",
"isReadyForExportAfterScheduledExport": true,
"isReadyForExportAfterExportNow": true,
"transportCredientialType": "<unknown>",
"serviceButtonName": "<string>"
},
"isStyleSupplier": true,
"isItemSupplier": true,
"priceSettings": {
"id": 123,
"organizationId": 123,
"useFuturePrice": true,
"useSimulatePrice": true,
"supplierSimulatePriceRights": "<unknown>",
"lockSupplierOnStylePriceApproval": true
},
"rootFolderToSync": "<string>",
"supplierPortalEnabled": true,
"inviteCode": "<string>",
"hubSpotRecordID": "<string>",
"auth0OrgId": "<string>",
"isAuth0Eligible": true,
"brandNames": [
"<string>"
]
},
"associatedDesignerOrganizations": [
{
"contactPerson": "<string>",
"contactEmail": "<string>",
"name": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"integrationEmail": "<string>",
"activeUsersLimit": 500,
"planType": {
"id": 123,
"name": "<string>"
},
"planTier": {
"id": 123,
"name": "<string>",
"modules": [
{
"id": 123,
"key": 123,
"name": "<string>"
}
]
},
"logo": "<unknown>",
"useLogoInEmailNotification": true,
"isChurned": true,
"onboardingStartDate": "2023-11-07T05:31:56Z",
"onboardingStatus": 123,
"organizationSettings": {
"unit": 123,
"organizationId": 123,
"hideInActiveSampleType": true,
"hideInActiveCompanyUser": true,
"isSupplierNameWithId": true,
"isShowSupplierFacilities": true,
"styleSupplierFacilityCount": 123,
"isShowMainItemInStyleItemList": true,
"searchAllStylesOrItems": true,
"saveIllustratorFilesLocally": true,
"allowSizeDescriptionFreeText": true,
"enableStyleFilterBarcodeSearch": true,
"setFocusOnStyleBarcodeSearch": true,
"useFraction": true,
"lastQualityTopicNumber": 123,
"showStylesForActiveSeasonsOnIllustrator": true,
"spyIntegrationVersion": 123,
"spyWebhooksEnabled": true
},
"id": 123,
"typeId": 123,
"address": "<string>",
"zipCode": "<string>",
"city": "<string>",
"stateOrRegion": "<string>",
"webSite": "<string>",
"phoneNumber": "<string>",
"faxNumber": "<string>",
"vatNumber": "<string>",
"localCurrency": {
"id": 123,
"countryCurrency": "<string>",
"currencyCode": "<string>",
"value": 123,
"isActive": true,
"name": "<string>"
},
"country": {
"id": 123,
"name": "<string>",
"code": "<string>"
},
"isActive": true,
"isUniqueStyleNumber": true,
"isAutoStyleNumberOn": true,
"isStyleNumberGeneratorActive": true,
"userDefinedSupplierId": "<string>",
"modules": [
{
"id": 123,
"key": 123,
"name": "<string>"
}
],
"createdDate": "2023-11-07T05:31:56Z",
"expiryDate": "2023-11-07T05:31:56Z",
"companyType": {
"id": 123,
"name": "<string>"
},
"brands": [
{
"name": "<string>",
"id": 123,
"organizationId": 123,
"status": true,
"address": "<string>",
"zipCode": "<string>",
"city": "<string>",
"state": "<string>",
"country": {
"id": 123,
"name": "<string>",
"code": "<string>"
},
"logo": "<unknown>",
"isDeleted": true,
"deletedOn": "2023-11-07T05:31:56Z",
"marginFactor": 123,
"userDefinedId": "<string>",
"logoThumbnails": "<array>",
"brandLogoUrl": "<string>"
}
],
"styleServiceDetails": {
"id": 123,
"organizationId": 123,
"serviceUrl": "<string>",
"userName": "<string>",
"password": "<string>",
"authenticationEndPoint": "<string>",
"type": "<unknown>",
"entityType": "<unknown>",
"webServiceType": "<unknown>",
"isReadyForExportAfterScheduledExport": true,
"isReadyForExportAfterExportNow": true,
"transportCredientialType": "<unknown>",
"serviceButtonName": "<string>"
},
"ftpStyleExportTime": {
"id": 123,
"organizationId": 123,
"utcHour": 123,
"utcMinute": 123,
"entityType": "<unknown>",
"limitPerFile": 123,
"recurringInterval": 123,
"hangfireSceduledJobId": "<string>",
"hangfireRecurringJobId": "<string>"
},
"itemServiceDetails": {
"id": 123,
"organizationId": 123,
"serviceUrl": "<string>",
"userName": "<string>",
"password": "<string>",
"authenticationEndPoint": "<string>",
"type": "<unknown>",
"entityType": "<unknown>",
"webServiceType": "<unknown>",
"isReadyForExportAfterScheduledExport": true,
"isReadyForExportAfterExportNow": true,
"transportCredientialType": "<unknown>",
"serviceButtonName": "<string>"
},
"ftpItemExportTime": {
"id": 123,
"organizationId": 123,
"utcHour": 123,
"utcMinute": 123,
"entityType": "<unknown>",
"limitPerFile": 123,
"recurringInterval": 123,
"hangfireSceduledJobId": "<string>",
"hangfireRecurringJobId": "<string>"
},
"supplierServiceDetails": {
"id": 123,
"organizationId": 123,
"serviceUrl": "<string>",
"userName": "<string>",
"password": "<string>",
"authenticationEndPoint": "<string>",
"type": "<unknown>",
"entityType": "<unknown>",
"webServiceType": "<unknown>",
"isReadyForExportAfterScheduledExport": true,
"isReadyForExportAfterExportNow": true,
"transportCredientialType": "<unknown>",
"serviceButtonName": "<string>"
},
"isStyleSupplier": true,
"isItemSupplier": true,
"priceSettings": {
"id": 123,
"organizationId": 123,
"useFuturePrice": true,
"useSimulatePrice": true,
"supplierSimulatePriceRights": "<unknown>",
"lockSupplierOnStylePriceApproval": true
},
"rootFolderToSync": "<string>",
"supplierPortalEnabled": true,
"inviteCode": "<string>",
"hubSpotRecordID": "<string>",
"auth0OrgId": "<string>",
"isAuth0Eligible": true,
"brandNames": [
"<string>"
]
}
],
"accessToAllBrands": true,
"isTaskOrContactsAssign": true,
"brands": [
{
"name": "<string>",
"id": 123,
"organizationId": 123,
"status": true,
"address": "<string>",
"zipCode": "<string>",
"city": "<string>",
"state": "<string>",
"country": {
"id": 123,
"name": "<string>",
"code": "<string>"
},
"logo": "<unknown>",
"isDeleted": true,
"deletedOn": "2023-11-07T05:31:56Z",
"marginFactor": 123,
"userDefinedId": "<string>",
"logoThumbnails": "<array>",
"brandLogoUrl": "<string>"
}
],
"adminUnits": [
{
"name": "<string>",
"id": 123,
"userDefinedId": "<string>",
"organizationId": 123,
"isFraction": true,
"changes": [
{
"propertyName": "<string>",
"oldValue": "<unknown>",
"newValue": "<unknown>"
}
]
}
],
"adminFacilityType": [
{
"name": "<string>",
"id": 123,
"userDefinedId": "<string>",
"organizationId": 123,
"isActive": true,
"position": 123
}
],
"roles": [
{
"id": 123,
"name": "<string>"
}
],
"roleNames": [
"<string>"
],
"permissions": "<array>",
"permissionStrings": [
"<string>"
],
"listenStyleMessages": true,
"listenStyleSampleRequest": true,
"listenItemMessages": true,
"listenItemSampleRequest": true,
"displayStyleProperty": "<unknown>",
"displayItemProperty": "<unknown>",
"outOfOfficeFromDate": "2023-11-07T05:31:56Z",
"outOfOfficeToDate": "2023-11-07T05:31:56Z",
"outOfOfficeMessage": "<string>",
"environment": "<string>",
"planTier": "<string>",
"planType": "<string>",
"isSeasonAccessible": true,
"signUpDate": "2023-11-07T05:31:56Z",
"acceptTermRequired": true,
"termFileResource": "<unknown>",
"customTermName": "<string>",
"isLoginHasCustomTermModuleAccess": true,
"notifyForComplianceMessages": true,
"notifyForComplianceQualityTopicMessages": true,
"isUserOutOfOffice": true,
"outOfOfficeNotifyMessage": "<string>",
"userTransfer": {
"userIdToTransferContacts": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"userIdToTransferTasks": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
},
"isPauseNotification": true,
"isTwoFactorEnabled": true,
"isQRCodeGenerated": true,
"criticalPlatformUpdatesSubscription": true,
"platformNewsletterSubscription": true,
"systemAndConfigurationUpdatesSubscription": true,
"showStyleMainTab": true,
"showStyleRecentTab": true,
"showItemMainTab": true,
"showItemRecentTab": true,
"signalrHubUrl": "<string>",
"signalrHubToken": "<string>",
"delogueTerm": {
"id": 123,
"loginId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"acceptedTerms": true,
"acceptedOn": "2023-11-07T05:31:56Z",
"withdrawnOn": "2023-11-07T05:31:56Z",
"lastUpdatedByIP": "<string>"
},
"userCookies": "<array>",
"apiHostUrl": "<string>",
"avatarColor": "<string>",
"userCount": 123,
"isSuperadmin": true,
"showExtensionsTab": true,
"supplierRoles": "<string>"
},
"createdOn": "2023-11-07T05:31:56Z",
"storageLocation": "<string>",
"relatedEntityType": null,
"relatedEntityId": 123,
"createdByOrganizationId": 123,
"isLink": true,
"isDeletedFromS3": true,
"resourceThumbnailAssociation": {
"resourceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"thumbnailResourceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
},
"thumbnails": "<array>",
"fileIconUrl": "<string>",
"thumbnailNotFound": true
},
"marginFactor": 123,
"userDefinedId": "<string>",
"logoThumbnails": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"url": "<string>",
"metadata": "<string>",
"size": 123,
"fileWidth": 123,
"fileHeight": 123,
"provider": "<string>",
"createdBy": {
"loginId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"email": "<string>",
"organizationId": 123,
"organizationTypeId": 123,
"organizationType": "<unknown>",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"activeUsersLimit": 123,
"firstName": "<string>",
"lastName": "<string>",
"password": "<string>",
"status": 123,
"organization": {
"name": "<string>",
"id": 123,
"typeId": 123,
"address": "<string>",
"zipCode": "<string>",
"city": "<string>",
"stateOrRegion": "<string>",
"webSite": "<string>",
"phoneNumber": "<string>",
"faxNumber": "<string>",
"vatNumber": "<string>",
"localCurrency": {
"id": 123,
"countryCurrency": "<string>",
"currencyCode": "<string>",
"value": 123,
"isActive": true,
"name": "<string>"
},
"country": {
"id": 123,
"name": "<string>",
"code": "<string>"
},
"isActive": true,
"isUniqueStyleNumber": true,
"isAutoStyleNumberOn": true,
"isStyleNumberGeneratorActive": true,
"userDefinedSupplierId": "<string>",
"modules": [
{
"id": 123,
"key": 123,
"name": "<string>"
}
],
"createdDate": "2023-11-07T05:31:56Z",
"expiryDate": "2023-11-07T05:31:56Z",
"companyType": {
"id": 123,
"name": "<string>"
},
"brands": [
{
"name": "<string>",
"id": 123,
"organizationId": 123,
"status": true,
"address": "<string>",
"zipCode": "<string>",
"city": "<string>",
"state": "<string>",
"country": {
"id": 123,
"name": "<string>",
"code": "<string>"
},
"logo": "<unknown>",
"isDeleted": true,
"deletedOn": "2023-11-07T05:31:56Z",
"marginFactor": 123,
"userDefinedId": "<string>",
"logoThumbnails": "<array>",
"brandLogoUrl": "<string>"
}
],
"styleServiceDetails": {
"id": 123,
"organizationId": 123,
"serviceUrl": "<string>",
"userName": "<string>",
"password": "<string>",
"authenticationEndPoint": "<string>",
"type": "<unknown>",
"entityType": "<unknown>",
"webServiceType": "<unknown>",
"isReadyForExportAfterScheduledExport": true,
"isReadyForExportAfterExportNow": true,
"transportCredientialType": "<unknown>",
"serviceButtonName": "<string>"
},
"ftpStyleExportTime": {
"id": 123,
"organizationId": 123,
"utcHour": 123,
"utcMinute": 123,
"entityType": "<unknown>",
"limitPerFile": 123,
"recurringInterval": 123,
"hangfireSceduledJobId": "<string>",
"hangfireRecurringJobId": "<string>"
},
"itemServiceDetails": {
"id": 123,
"organizationId": 123,
"serviceUrl": "<string>",
"userName": "<string>",
"password": "<string>",
"authenticationEndPoint": "<string>",
"type": "<unknown>",
"entityType": "<unknown>",
"webServiceType": "<unknown>",
"isReadyForExportAfterScheduledExport": true,
"isReadyForExportAfterExportNow": true,
"transportCredientialType": "<unknown>",
"serviceButtonName": "<string>"
},
"ftpItemExportTime": {
"id": 123,
"organizationId": 123,
"utcHour": 123,
"utcMinute": 123,
"entityType": "<unknown>",
"limitPerFile": 123,
"recurringInterval": 123,
"hangfireSceduledJobId": "<string>",
"hangfireRecurringJobId": "<string>"
},
"supplierServiceDetails": {
"id": 123,
"organizationId": 123,
"serviceUrl": "<string>",
"userName": "<string>",
"password": "<string>",
"authenticationEndPoint": "<string>",
"type": "<unknown>",
"entityType": "<unknown>",
"webServiceType": "<unknown>",
"isReadyForExportAfterScheduledExport": true,
"isReadyForExportAfterExportNow": true,
"transportCredientialType": "<unknown>",
"serviceButtonName": "<string>"
},
"isStyleSupplier": true,
"isItemSupplier": true,
"priceSettings": {
"id": 123,
"organizationId": 123,
"useFuturePrice": true,
"useSimulatePrice": true,
"supplierSimulatePriceRights": "<unknown>",
"lockSupplierOnStylePriceApproval": true
},
"rootFolderToSync": "<string>",
"supplierPortalEnabled": true,
"inviteCode": "<string>",
"hubSpotRecordID": "<string>",
"auth0OrgId": "<string>",
"isAuth0Eligible": true,
"brandNames": [
"<string>"
]
},
"designerOrganization": {
"contactPerson": "<string>",
"contactEmail": "<string>",
"name": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"integrationEmail": "<string>",
"activeUsersLimit": 500,
"planType": {
"id": 123,
"name": "<string>"
},
"planTier": {
"id": 123,
"name": "<string>",
"modules": [
{
"id": 123,
"key": 123,
"name": "<string>"
}
]
},
"logo": "<unknown>",
"useLogoInEmailNotification": true,
"isChurned": true,
"onboardingStartDate": "2023-11-07T05:31:56Z",
"onboardingStatus": 123,
"organizationSettings": {
"unit": 123,
"organizationId": 123,
"hideInActiveSampleType": true,
"hideInActiveCompanyUser": true,
"isSupplierNameWithId": true,
"isShowSupplierFacilities": true,
"styleSupplierFacilityCount": 123,
"isShowMainItemInStyleItemList": true,
"searchAllStylesOrItems": true,
"saveIllustratorFilesLocally": true,
"allowSizeDescriptionFreeText": true,
"enableStyleFilterBarcodeSearch": true,
"setFocusOnStyleBarcodeSearch": true,
"useFraction": true,
"lastQualityTopicNumber": 123,
"showStylesForActiveSeasonsOnIllustrator": true,
"spyIntegrationVersion": 123,
"spyWebhooksEnabled": true
},
"id": 123,
"typeId": 123,
"address": "<string>",
"zipCode": "<string>",
"city": "<string>",
"stateOrRegion": "<string>",
"webSite": "<string>",
"phoneNumber": "<string>",
"faxNumber": "<string>",
"vatNumber": "<string>",
"localCurrency": {
"id": 123,
"countryCurrency": "<string>",
"currencyCode": "<string>",
"value": 123,
"isActive": true,
"name": "<string>"
},
"country": {
"id": 123,
"name": "<string>",
"code": "<string>"
},
"isActive": true,
"isUniqueStyleNumber": true,
"isAutoStyleNumberOn": true,
"isStyleNumberGeneratorActive": true,
"userDefinedSupplierId": "<string>",
"modules": [
{
"id": 123,
"key": 123,
"name": "<string>"
}
],
"createdDate": "2023-11-07T05:31:56Z",
"expiryDate": "2023-11-07T05:31:56Z",
"companyType": {
"id": 123,
"name": "<string>"
},
"brands": [
{
"name": "<string>",
"id": 123,
"organizationId": 123,
"status": true,
"address": "<string>",
"zipCode": "<string>",
"city": "<string>",
"state": "<string>",
"country": {
"id": 123,
"name": "<string>",
"code": "<string>"
},
"logo": "<unknown>",
"isDeleted": true,
"deletedOn": "2023-11-07T05:31:56Z",
"marginFactor": 123,
"userDefinedId": "<string>",
"logoThumbnails": "<array>",
"brandLogoUrl": "<string>"
}
],
"styleServiceDetails": {
"id": 123,
"organizationId": 123,
"serviceUrl": "<string>",
"userName": "<string>",
"password": "<string>",
"authenticationEndPoint": "<string>",
"type": "<unknown>",
"entityType": "<unknown>",
"webServiceType": "<unknown>",
"isReadyForExportAfterScheduledExport": true,
"isReadyForExportAfterExportNow": true,
"transportCredientialType": "<unknown>",
"serviceButtonName": "<string>"
},
"ftpStyleExportTime": {
"id": 123,
"organizationId": 123,
"utcHour": 123,
"utcMinute": 123,
"entityType": "<unknown>",
"limitPerFile": 123,
"recurringInterval": 123,
"hangfireSceduledJobId": "<string>",
"hangfireRecurringJobId": "<string>"
},
"itemServiceDetails": {
"id": 123,
"organizationId": 123,
"serviceUrl": "<string>",
"userName": "<string>",
"password": "<string>",
"authenticationEndPoint": "<string>",
"type": "<unknown>",
"entityType": "<unknown>",
"webServiceType": "<unknown>",
"isReadyForExportAfterScheduledExport": true,
"isReadyForExportAfterExportNow": true,
"transportCredientialType": "<unknown>",
"serviceButtonName": "<string>"
},
"ftpItemExportTime": {
"id": 123,
"organizationId": 123,
"utcHour": 123,
"utcMinute": 123,
"entityType": "<unknown>",
"limitPerFile": 123,
"recurringInterval": 123,
"hangfireSceduledJobId": "<string>",
"hangfireRecurringJobId": "<string>"
},
"supplierServiceDetails": {
"id": 123,
"organizationId": 123,
"serviceUrl": "<string>",
"userName": "<string>",
"password": "<string>",
"authenticationEndPoint": "<string>",
"type": "<unknown>",
"entityType": "<unknown>",
"webServiceType": "<unknown>",
"isReadyForExportAfterScheduledExport": true,
"isReadyForExportAfterExportNow": true,
"transportCredientialType": "<unknown>",
"serviceButtonName": "<string>"
},
"isStyleSupplier": true,
"isItemSupplier": true,
"priceSettings": {
"id": 123,
"organizationId": 123,
"useFuturePrice": true,
"useSimulatePrice": true,
"supplierSimulatePriceRights": "<unknown>",
"lockSupplierOnStylePriceApproval": true
},
"rootFolderToSync": "<string>",
"supplierPortalEnabled": true,
"inviteCode": "<string>",
"hubSpotRecordID": "<string>",
"auth0OrgId": "<string>",
"isAuth0Eligible": true,
"brandNames": [
"<string>"
]
},
"associatedDesignerOrganizations": [
{
"contactPerson": "<string>",
"contactEmail": "<string>",
"name": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"integrationEmail": "<string>",
"activeUsersLimit": 500,
"planType": {
"id": 123,
"name": "<string>"
},
"planTier": {
"id": 123,
"name": "<string>",
"modules": [
{
"id": 123,
"key": 123,
"name": "<string>"
}
]
},
"logo": "<unknown>",
"useLogoInEmailNotification": true,
"isChurned": true,
"onboardingStartDate": "2023-11-07T05:31:56Z",
"onboardingStatus": 123,
"organizationSettings": {
"unit": 123,
"organizationId": 123,
"hideInActiveSampleType": true,
"hideInActiveCompanyUser": true,
"isSupplierNameWithId": true,
"isShowSupplierFacilities": true,
"styleSupplierFacilityCount": 123,
"isShowMainItemInStyleItemList": true,
"searchAllStylesOrItems": true,
"saveIllustratorFilesLocally": true,
"allowSizeDescriptionFreeText": true,
"enableStyleFilterBarcodeSearch": true,
"setFocusOnStyleBarcodeSearch": true,
"useFraction": true,
"lastQualityTopicNumber": 123,
"showStylesForActiveSeasonsOnIllustrator": true,
"spyIntegrationVersion": 123,
"spyWebhooksEnabled": true
},
"id": 123,
"typeId": 123,
"address": "<string>",
"zipCode": "<string>",
"city": "<string>",
"stateOrRegion": "<string>",
"webSite": "<string>",
"phoneNumber": "<string>",
"faxNumber": "<string>",
"vatNumber": "<string>",
"localCurrency": {
"id": 123,
"countryCurrency": "<string>",
"currencyCode": "<string>",
"value": 123,
"isActive": true,
"name": "<string>"
},
"country": {
"id": 123,
"name": "<string>",
"code": "<string>"
},
"isActive": true,
"isUniqueStyleNumber": true,
"isAutoStyleNumberOn": true,
"isStyleNumberGeneratorActive": true,
"userDefinedSupplierId": "<string>",
"modules": [
{
"id": 123,
"key": 123,
"name": "<string>"
}
],
"createdDate": "2023-11-07T05:31:56Z",
"expiryDate": "2023-11-07T05:31:56Z",
"companyType": {
"id": 123,
"name": "<string>"
},
"brands": [
{
"name": "<string>",
"id": 123,
"organizationId": 123,
"status": true,
"address": "<string>",
"zipCode": "<string>",
"city": "<string>",
"state": "<string>",
"country": {
"id": 123,
"name": "<string>",
"code": "<string>"
},
"logo": "<unknown>",
"isDeleted": true,
"deletedOn": "2023-11-07T05:31:56Z",
"marginFactor": 123,
"userDefinedId": "<string>",
"logoThumbnails": "<array>",
"brandLogoUrl": "<string>"
}
],
"styleServiceDetails": {
"id": 123,
"organizationId": 123,
"serviceUrl": "<string>",
"userName": "<string>",
"password": "<string>",
"authenticationEndPoint": "<string>",
"type": "<unknown>",
"entityType": "<unknown>",
"webServiceType": "<unknown>",
"isReadyForExportAfterScheduledExport": true,
"isReadyForExportAfterExportNow": true,
"transportCredientialType": "<unknown>",
"serviceButtonName": "<string>"
},
"ftpStyleExportTime": {
"id": 123,
"organizationId": 123,
"utcHour": 123,
"utcMinute": 123,
"entityType": "<unknown>",
"limitPerFile": 123,
"recurringInterval": 123,
"hangfireSceduledJobId": "<string>",
"hangfireRecurringJobId": "<string>"
},
"itemServiceDetails": {
"id": 123,
"organizationId": 123,
"serviceUrl": "<string>",
"userName": "<string>",
"password": "<string>",
"authenticationEndPoint": "<string>",
"type": "<unknown>",
"entityType": "<unknown>",
"webServiceType": "<unknown>",
"isReadyForExportAfterScheduledExport": true,
"isReadyForExportAfterExportNow": true,
"transportCredientialType": "<unknown>",
"serviceButtonName": "<string>"
},
"ftpItemExportTime": {
"id": 123,
"organizationId": 123,
"utcHour": 123,
"utcMinute": 123,
"entityType": "<unknown>",
"limitPerFile": 123,
"recurringInterval": 123,
"hangfireSceduledJobId": "<string>",
"hangfireRecurringJobId": "<string>"
},
"supplierServiceDetails": {
"id": 123,
"organizationId": 123,
"serviceUrl": "<string>",
"userName": "<string>",
"password": "<string>",
"authenticationEndPoint": "<string>",
"type": "<unknown>",
"entityType": "<unknown>",
"webServiceType": "<unknown>",
"isReadyForExportAfterScheduledExport": true,
"isReadyForExportAfterExportNow": true,
"transportCredientialType": "<unknown>",
"serviceButtonName": "<string>"
},
"isStyleSupplier": true,
"isItemSupplier": true,
"priceSettings": {
"id": 123,
"organizationId": 123,
"useFuturePrice": true,
"useSimulatePrice": true,
"supplierSimulatePriceRights": "<unknown>",
"lockSupplierOnStylePriceApproval": true
},
"rootFolderToSync": "<string>",
"supplierPortalEnabled": true,
"inviteCode": "<string>",
"hubSpotRecordID": "<string>",
"auth0OrgId": "<string>",
"isAuth0Eligible": true,
"brandNames": [
"<string>"
]
}
],
"accessToAllBrands": true,
"isTaskOrContactsAssign": true,
"brands": [
{
"name": "<string>",
"id": 123,
"organizationId": 123,
"status": true,
"address": "<string>",
"zipCode": "<string>",
"city": "<string>",
"state": "<string>",
"country": {
"id": 123,
"name": "<string>",
"code": "<string>"
},
"logo": "<unknown>",
"isDeleted": true,
"deletedOn": "2023-11-07T05:31:56Z",
"marginFactor": 123,
"userDefinedId": "<string>",
"logoThumbnails": "<array>",
"brandLogoUrl": "<string>"
}
],
"adminUnits": [
{
"name": "<string>",
"id": 123,
"userDefinedId": "<string>",
"organizationId": 123,
"isFraction": true,
"changes": [
{
"propertyName": "<string>",
"oldValue": "<unknown>",
"newValue": "<unknown>"
}
]
}
],
"adminFacilityType": [
{
"name": "<string>",
"id": 123,
"userDefinedId": "<string>",
"organizationId": 123,
"isActive": true,
"position": 123
}
],
"roles": [
{
"id": 123,
"name": "<string>"
}
],
"roleNames": [
"<string>"
],
"permissions": "<array>",
"permissionStrings": [
"<string>"
],
"listenStyleMessages": true,
"listenStyleSampleRequest": true,
"listenItemMessages": true,
"listenItemSampleRequest": true,
"displayStyleProperty": "<unknown>",
"displayItemProperty": "<unknown>",
"outOfOfficeFromDate": "2023-11-07T05:31:56Z",
"outOfOfficeToDate": "2023-11-07T05:31:56Z",
"outOfOfficeMessage": "<string>",
"environment": "<string>",
"planTier": "<string>",
"planType": "<string>",
"isSeasonAccessible": true,
"signUpDate": "2023-11-07T05:31:56Z",
"acceptTermRequired": true,
"termFileResource": "<unknown>",
"customTermName": "<string>",
"isLoginHasCustomTermModuleAccess": true,
"notifyForComplianceMessages": true,
"notifyForComplianceQualityTopicMessages": true,
"isUserOutOfOffice": true,
"outOfOfficeNotifyMessage": "<string>",
"userTransfer": {
"userIdToTransferContacts": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"userIdToTransferTasks": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
},
"isPauseNotification": true,
"isTwoFactorEnabled": true,
"isQRCodeGenerated": true,
"criticalPlatformUpdatesSubscription": true,
"platformNewsletterSubscription": true,
"systemAndConfigurationUpdatesSubscription": true,
"showStyleMainTab": true,
"showStyleRecentTab": true,
"showItemMainTab": true,
"showItemRecentTab": true,
"signalrHubUrl": "<string>",
"signalrHubToken": "<string>",
"delogueTerm": {
"id": 123,
"loginId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"acceptedTerms": true,
"acceptedOn": "2023-11-07T05:31:56Z",
"withdrawnOn": "2023-11-07T05:31:56Z",
"lastUpdatedByIP": "<string>"
},
"userCookies": "<array>",
"apiHostUrl": "<string>",
"avatarColor": "<string>",
"userCount": 123,
"isSuperadmin": true,
"showExtensionsTab": true,
"supplierRoles": "<string>"
},
"createdOn": "2023-11-07T05:31:56Z",
"storageLocation": "<string>",
"relatedEntityType": null,
"relatedEntityId": 123,
"createdByOrganizationId": 123,
"isLink": true,
"isDeletedFromS3": true,
"resourceThumbnailAssociation": {
"resourceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"thumbnailResourceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
},
"thumbnails": "<array>",
"fileIconUrl": "<string>",
"thumbnailNotFound": true
}
]
}
}{
"status": "<unknown>",
"code": "<string>",
"error": {
"details": [
{
"type": "<string>",
"field": "<string>",
"value": "<string>"
}
]
}
}{
"status": "<unknown>",
"code": "<string>",
"error": {
"details": [
{
"type": "<string>",
"field": "<string>",
"value": "<string>"
}
]
}
}{
"status": "<unknown>",
"code": "<string>",
"error": {
"details": [
{
"type": "<string>",
"field": "<string>",
"value": "<string>"
}
]
}
}{
"status": "<unknown>",
"code": "<string>",
"error": {
"details": [
{
"type": "<string>",
"field": "<string>",
"value": "<string>"
}
]
}
}{
"status": "<unknown>",
"code": "<string>",
"error": {
"details": [
{
"type": "<string>",
"field": "<string>",
"value": "<string>"
}
]
}
}{
"status": "<unknown>",
"code": "<string>",
"error": {
"details": [
{
"type": "<string>",
"field": "<string>",
"value": "<string>"
}
]
}
}{
"status": "<unknown>",
"code": "<string>",
"error": {
"details": [
{
"type": "<string>",
"field": "<string>",
"value": "<string>"
}
]
}
}Brands
Partially updates a brand by ID.
Applies a JSON Patch document (RFC 6902) to a brand owned by the current organization. Omitted fields are left unchanged (preserve-on-omit). The route id is authoritative; any ‘replace /id’ operation that changes the id returns 409. A ‘replace’ to null on a nullable field (e.g. /address, /zipCode, /city, /stateOrProvince, /countryId, /userDefinedId, /logo) clears that field in the database. Supply the field as a non-null value or omit it from the patch to preserve. A failed ‘test’ op returns 409; any other op that cannot be applied returns 422.
PATCH
/
api
/
brands
/
{id}
Partially updates a brand by ID.
curl --request PATCH \
--url http://ca-delogue-service-prod.bravepebble-62e34dbe.westeurope.azurecontainerapps.io/api/brands/{id} \
--header 'Content-Type: application/json-patch+json' \
--data '
[
{
"path": "<string>",
"value": "<unknown>"
}
]
'import requests
url = "http://ca-delogue-service-prod.bravepebble-62e34dbe.westeurope.azurecontainerapps.io/api/brands/{id}"
payload = [
{
"path": "<string>",
"value": "<unknown>"
}
]
headers = {"Content-Type": "application/json-patch+json"}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {'Content-Type': 'application/json-patch+json'},
body: JSON.stringify([{path: '<string>', value: '<unknown>'}])
};
fetch('http://ca-delogue-service-prod.bravepebble-62e34dbe.westeurope.azurecontainerapps.io/api/brands/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "http://ca-delogue-service-prod.bravepebble-62e34dbe.westeurope.azurecontainerapps.io/api/brands/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
[
'path' => '<string>',
'value' => '<unknown>'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json-patch+json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "http://ca-delogue-service-prod.bravepebble-62e34dbe.westeurope.azurecontainerapps.io/api/brands/{id}"
payload := strings.NewReader("[\n {\n \"path\": \"<string>\",\n \"value\": \"<unknown>\"\n }\n]")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Content-Type", "application/json-patch+json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("http://ca-delogue-service-prod.bravepebble-62e34dbe.westeurope.azurecontainerapps.io/api/brands/{id}")
.header("Content-Type", "application/json-patch+json")
.body("[\n {\n \"path\": \"<string>\",\n \"value\": \"<unknown>\"\n }\n]")
.asString();require 'uri'
require 'net/http'
url = URI("http://ca-delogue-service-prod.bravepebble-62e34dbe.westeurope.azurecontainerapps.io/api/brands/{id}")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Patch.new(url)
request["Content-Type"] = 'application/json-patch+json'
request.body = "[\n {\n \"path\": \"<string>\",\n \"value\": \"<unknown>\"\n }\n]"
response = http.request(request)
puts response.read_body{
"status": "<unknown>",
"code": "<string>",
"data": {
"id": 123,
"name": "<string>",
"organizationId": 123,
"state": "<unknown>",
"properties": [
"<string>"
],
"address": "<string>",
"zipCode": "<string>",
"city": "<string>",
"stateOrProvince": "<string>",
"country": {
"id": 123,
"name": "<string>",
"code": "<string>"
},
"logo": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"url": "<string>",
"metadata": "<string>",
"size": 123,
"fileWidth": 123,
"fileHeight": 123,
"provider": "<string>",
"createdBy": {
"loginId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"email": "<string>",
"organizationId": 123,
"organizationTypeId": 123,
"organizationType": "<unknown>",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"activeUsersLimit": 123,
"firstName": "<string>",
"lastName": "<string>",
"password": "<string>",
"status": 123,
"organization": {
"name": "<string>",
"id": 123,
"typeId": 123,
"address": "<string>",
"zipCode": "<string>",
"city": "<string>",
"stateOrRegion": "<string>",
"webSite": "<string>",
"phoneNumber": "<string>",
"faxNumber": "<string>",
"vatNumber": "<string>",
"localCurrency": {
"id": 123,
"countryCurrency": "<string>",
"currencyCode": "<string>",
"value": 123,
"isActive": true,
"name": "<string>"
},
"country": {
"id": 123,
"name": "<string>",
"code": "<string>"
},
"isActive": true,
"isUniqueStyleNumber": true,
"isAutoStyleNumberOn": true,
"isStyleNumberGeneratorActive": true,
"userDefinedSupplierId": "<string>",
"modules": [
{
"id": 123,
"key": 123,
"name": "<string>"
}
],
"createdDate": "2023-11-07T05:31:56Z",
"expiryDate": "2023-11-07T05:31:56Z",
"companyType": {
"id": 123,
"name": "<string>"
},
"brands": [
{
"name": "<string>",
"id": 123,
"organizationId": 123,
"status": true,
"address": "<string>",
"zipCode": "<string>",
"city": "<string>",
"state": "<string>",
"country": {
"id": 123,
"name": "<string>",
"code": "<string>"
},
"logo": "<unknown>",
"isDeleted": true,
"deletedOn": "2023-11-07T05:31:56Z",
"marginFactor": 123,
"userDefinedId": "<string>",
"logoThumbnails": "<array>",
"brandLogoUrl": "<string>"
}
],
"styleServiceDetails": {
"id": 123,
"organizationId": 123,
"serviceUrl": "<string>",
"userName": "<string>",
"password": "<string>",
"authenticationEndPoint": "<string>",
"type": "<unknown>",
"entityType": "<unknown>",
"webServiceType": "<unknown>",
"isReadyForExportAfterScheduledExport": true,
"isReadyForExportAfterExportNow": true,
"transportCredientialType": "<unknown>",
"serviceButtonName": "<string>"
},
"ftpStyleExportTime": {
"id": 123,
"organizationId": 123,
"utcHour": 123,
"utcMinute": 123,
"entityType": "<unknown>",
"limitPerFile": 123,
"recurringInterval": 123,
"hangfireSceduledJobId": "<string>",
"hangfireRecurringJobId": "<string>"
},
"itemServiceDetails": {
"id": 123,
"organizationId": 123,
"serviceUrl": "<string>",
"userName": "<string>",
"password": "<string>",
"authenticationEndPoint": "<string>",
"type": "<unknown>",
"entityType": "<unknown>",
"webServiceType": "<unknown>",
"isReadyForExportAfterScheduledExport": true,
"isReadyForExportAfterExportNow": true,
"transportCredientialType": "<unknown>",
"serviceButtonName": "<string>"
},
"ftpItemExportTime": {
"id": 123,
"organizationId": 123,
"utcHour": 123,
"utcMinute": 123,
"entityType": "<unknown>",
"limitPerFile": 123,
"recurringInterval": 123,
"hangfireSceduledJobId": "<string>",
"hangfireRecurringJobId": "<string>"
},
"supplierServiceDetails": {
"id": 123,
"organizationId": 123,
"serviceUrl": "<string>",
"userName": "<string>",
"password": "<string>",
"authenticationEndPoint": "<string>",
"type": "<unknown>",
"entityType": "<unknown>",
"webServiceType": "<unknown>",
"isReadyForExportAfterScheduledExport": true,
"isReadyForExportAfterExportNow": true,
"transportCredientialType": "<unknown>",
"serviceButtonName": "<string>"
},
"isStyleSupplier": true,
"isItemSupplier": true,
"priceSettings": {
"id": 123,
"organizationId": 123,
"useFuturePrice": true,
"useSimulatePrice": true,
"supplierSimulatePriceRights": "<unknown>",
"lockSupplierOnStylePriceApproval": true
},
"rootFolderToSync": "<string>",
"supplierPortalEnabled": true,
"inviteCode": "<string>",
"hubSpotRecordID": "<string>",
"auth0OrgId": "<string>",
"isAuth0Eligible": true,
"brandNames": [
"<string>"
]
},
"designerOrganization": {
"contactPerson": "<string>",
"contactEmail": "<string>",
"name": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"integrationEmail": "<string>",
"activeUsersLimit": 500,
"planType": {
"id": 123,
"name": "<string>"
},
"planTier": {
"id": 123,
"name": "<string>",
"modules": [
{
"id": 123,
"key": 123,
"name": "<string>"
}
]
},
"logo": "<unknown>",
"useLogoInEmailNotification": true,
"isChurned": true,
"onboardingStartDate": "2023-11-07T05:31:56Z",
"onboardingStatus": 123,
"organizationSettings": {
"unit": 123,
"organizationId": 123,
"hideInActiveSampleType": true,
"hideInActiveCompanyUser": true,
"isSupplierNameWithId": true,
"isShowSupplierFacilities": true,
"styleSupplierFacilityCount": 123,
"isShowMainItemInStyleItemList": true,
"searchAllStylesOrItems": true,
"saveIllustratorFilesLocally": true,
"allowSizeDescriptionFreeText": true,
"enableStyleFilterBarcodeSearch": true,
"setFocusOnStyleBarcodeSearch": true,
"useFraction": true,
"lastQualityTopicNumber": 123,
"showStylesForActiveSeasonsOnIllustrator": true,
"spyIntegrationVersion": 123,
"spyWebhooksEnabled": true
},
"id": 123,
"typeId": 123,
"address": "<string>",
"zipCode": "<string>",
"city": "<string>",
"stateOrRegion": "<string>",
"webSite": "<string>",
"phoneNumber": "<string>",
"faxNumber": "<string>",
"vatNumber": "<string>",
"localCurrency": {
"id": 123,
"countryCurrency": "<string>",
"currencyCode": "<string>",
"value": 123,
"isActive": true,
"name": "<string>"
},
"country": {
"id": 123,
"name": "<string>",
"code": "<string>"
},
"isActive": true,
"isUniqueStyleNumber": true,
"isAutoStyleNumberOn": true,
"isStyleNumberGeneratorActive": true,
"userDefinedSupplierId": "<string>",
"modules": [
{
"id": 123,
"key": 123,
"name": "<string>"
}
],
"createdDate": "2023-11-07T05:31:56Z",
"expiryDate": "2023-11-07T05:31:56Z",
"companyType": {
"id": 123,
"name": "<string>"
},
"brands": [
{
"name": "<string>",
"id": 123,
"organizationId": 123,
"status": true,
"address": "<string>",
"zipCode": "<string>",
"city": "<string>",
"state": "<string>",
"country": {
"id": 123,
"name": "<string>",
"code": "<string>"
},
"logo": "<unknown>",
"isDeleted": true,
"deletedOn": "2023-11-07T05:31:56Z",
"marginFactor": 123,
"userDefinedId": "<string>",
"logoThumbnails": "<array>",
"brandLogoUrl": "<string>"
}
],
"styleServiceDetails": {
"id": 123,
"organizationId": 123,
"serviceUrl": "<string>",
"userName": "<string>",
"password": "<string>",
"authenticationEndPoint": "<string>",
"type": "<unknown>",
"entityType": "<unknown>",
"webServiceType": "<unknown>",
"isReadyForExportAfterScheduledExport": true,
"isReadyForExportAfterExportNow": true,
"transportCredientialType": "<unknown>",
"serviceButtonName": "<string>"
},
"ftpStyleExportTime": {
"id": 123,
"organizationId": 123,
"utcHour": 123,
"utcMinute": 123,
"entityType": "<unknown>",
"limitPerFile": 123,
"recurringInterval": 123,
"hangfireSceduledJobId": "<string>",
"hangfireRecurringJobId": "<string>"
},
"itemServiceDetails": {
"id": 123,
"organizationId": 123,
"serviceUrl": "<string>",
"userName": "<string>",
"password": "<string>",
"authenticationEndPoint": "<string>",
"type": "<unknown>",
"entityType": "<unknown>",
"webServiceType": "<unknown>",
"isReadyForExportAfterScheduledExport": true,
"isReadyForExportAfterExportNow": true,
"transportCredientialType": "<unknown>",
"serviceButtonName": "<string>"
},
"ftpItemExportTime": {
"id": 123,
"organizationId": 123,
"utcHour": 123,
"utcMinute": 123,
"entityType": "<unknown>",
"limitPerFile": 123,
"recurringInterval": 123,
"hangfireSceduledJobId": "<string>",
"hangfireRecurringJobId": "<string>"
},
"supplierServiceDetails": {
"id": 123,
"organizationId": 123,
"serviceUrl": "<string>",
"userName": "<string>",
"password": "<string>",
"authenticationEndPoint": "<string>",
"type": "<unknown>",
"entityType": "<unknown>",
"webServiceType": "<unknown>",
"isReadyForExportAfterScheduledExport": true,
"isReadyForExportAfterExportNow": true,
"transportCredientialType": "<unknown>",
"serviceButtonName": "<string>"
},
"isStyleSupplier": true,
"isItemSupplier": true,
"priceSettings": {
"id": 123,
"organizationId": 123,
"useFuturePrice": true,
"useSimulatePrice": true,
"supplierSimulatePriceRights": "<unknown>",
"lockSupplierOnStylePriceApproval": true
},
"rootFolderToSync": "<string>",
"supplierPortalEnabled": true,
"inviteCode": "<string>",
"hubSpotRecordID": "<string>",
"auth0OrgId": "<string>",
"isAuth0Eligible": true,
"brandNames": [
"<string>"
]
},
"associatedDesignerOrganizations": [
{
"contactPerson": "<string>",
"contactEmail": "<string>",
"name": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"integrationEmail": "<string>",
"activeUsersLimit": 500,
"planType": {
"id": 123,
"name": "<string>"
},
"planTier": {
"id": 123,
"name": "<string>",
"modules": [
{
"id": 123,
"key": 123,
"name": "<string>"
}
]
},
"logo": "<unknown>",
"useLogoInEmailNotification": true,
"isChurned": true,
"onboardingStartDate": "2023-11-07T05:31:56Z",
"onboardingStatus": 123,
"organizationSettings": {
"unit": 123,
"organizationId": 123,
"hideInActiveSampleType": true,
"hideInActiveCompanyUser": true,
"isSupplierNameWithId": true,
"isShowSupplierFacilities": true,
"styleSupplierFacilityCount": 123,
"isShowMainItemInStyleItemList": true,
"searchAllStylesOrItems": true,
"saveIllustratorFilesLocally": true,
"allowSizeDescriptionFreeText": true,
"enableStyleFilterBarcodeSearch": true,
"setFocusOnStyleBarcodeSearch": true,
"useFraction": true,
"lastQualityTopicNumber": 123,
"showStylesForActiveSeasonsOnIllustrator": true,
"spyIntegrationVersion": 123,
"spyWebhooksEnabled": true
},
"id": 123,
"typeId": 123,
"address": "<string>",
"zipCode": "<string>",
"city": "<string>",
"stateOrRegion": "<string>",
"webSite": "<string>",
"phoneNumber": "<string>",
"faxNumber": "<string>",
"vatNumber": "<string>",
"localCurrency": {
"id": 123,
"countryCurrency": "<string>",
"currencyCode": "<string>",
"value": 123,
"isActive": true,
"name": "<string>"
},
"country": {
"id": 123,
"name": "<string>",
"code": "<string>"
},
"isActive": true,
"isUniqueStyleNumber": true,
"isAutoStyleNumberOn": true,
"isStyleNumberGeneratorActive": true,
"userDefinedSupplierId": "<string>",
"modules": [
{
"id": 123,
"key": 123,
"name": "<string>"
}
],
"createdDate": "2023-11-07T05:31:56Z",
"expiryDate": "2023-11-07T05:31:56Z",
"companyType": {
"id": 123,
"name": "<string>"
},
"brands": [
{
"name": "<string>",
"id": 123,
"organizationId": 123,
"status": true,
"address": "<string>",
"zipCode": "<string>",
"city": "<string>",
"state": "<string>",
"country": {
"id": 123,
"name": "<string>",
"code": "<string>"
},
"logo": "<unknown>",
"isDeleted": true,
"deletedOn": "2023-11-07T05:31:56Z",
"marginFactor": 123,
"userDefinedId": "<string>",
"logoThumbnails": "<array>",
"brandLogoUrl": "<string>"
}
],
"styleServiceDetails": {
"id": 123,
"organizationId": 123,
"serviceUrl": "<string>",
"userName": "<string>",
"password": "<string>",
"authenticationEndPoint": "<string>",
"type": "<unknown>",
"entityType": "<unknown>",
"webServiceType": "<unknown>",
"isReadyForExportAfterScheduledExport": true,
"isReadyForExportAfterExportNow": true,
"transportCredientialType": "<unknown>",
"serviceButtonName": "<string>"
},
"ftpStyleExportTime": {
"id": 123,
"organizationId": 123,
"utcHour": 123,
"utcMinute": 123,
"entityType": "<unknown>",
"limitPerFile": 123,
"recurringInterval": 123,
"hangfireSceduledJobId": "<string>",
"hangfireRecurringJobId": "<string>"
},
"itemServiceDetails": {
"id": 123,
"organizationId": 123,
"serviceUrl": "<string>",
"userName": "<string>",
"password": "<string>",
"authenticationEndPoint": "<string>",
"type": "<unknown>",
"entityType": "<unknown>",
"webServiceType": "<unknown>",
"isReadyForExportAfterScheduledExport": true,
"isReadyForExportAfterExportNow": true,
"transportCredientialType": "<unknown>",
"serviceButtonName": "<string>"
},
"ftpItemExportTime": {
"id": 123,
"organizationId": 123,
"utcHour": 123,
"utcMinute": 123,
"entityType": "<unknown>",
"limitPerFile": 123,
"recurringInterval": 123,
"hangfireSceduledJobId": "<string>",
"hangfireRecurringJobId": "<string>"
},
"supplierServiceDetails": {
"id": 123,
"organizationId": 123,
"serviceUrl": "<string>",
"userName": "<string>",
"password": "<string>",
"authenticationEndPoint": "<string>",
"type": "<unknown>",
"entityType": "<unknown>",
"webServiceType": "<unknown>",
"isReadyForExportAfterScheduledExport": true,
"isReadyForExportAfterExportNow": true,
"transportCredientialType": "<unknown>",
"serviceButtonName": "<string>"
},
"isStyleSupplier": true,
"isItemSupplier": true,
"priceSettings": {
"id": 123,
"organizationId": 123,
"useFuturePrice": true,
"useSimulatePrice": true,
"supplierSimulatePriceRights": "<unknown>",
"lockSupplierOnStylePriceApproval": true
},
"rootFolderToSync": "<string>",
"supplierPortalEnabled": true,
"inviteCode": "<string>",
"hubSpotRecordID": "<string>",
"auth0OrgId": "<string>",
"isAuth0Eligible": true,
"brandNames": [
"<string>"
]
}
],
"accessToAllBrands": true,
"isTaskOrContactsAssign": true,
"brands": [
{
"name": "<string>",
"id": 123,
"organizationId": 123,
"status": true,
"address": "<string>",
"zipCode": "<string>",
"city": "<string>",
"state": "<string>",
"country": {
"id": 123,
"name": "<string>",
"code": "<string>"
},
"logo": "<unknown>",
"isDeleted": true,
"deletedOn": "2023-11-07T05:31:56Z",
"marginFactor": 123,
"userDefinedId": "<string>",
"logoThumbnails": "<array>",
"brandLogoUrl": "<string>"
}
],
"adminUnits": [
{
"name": "<string>",
"id": 123,
"userDefinedId": "<string>",
"organizationId": 123,
"isFraction": true,
"changes": [
{
"propertyName": "<string>",
"oldValue": "<unknown>",
"newValue": "<unknown>"
}
]
}
],
"adminFacilityType": [
{
"name": "<string>",
"id": 123,
"userDefinedId": "<string>",
"organizationId": 123,
"isActive": true,
"position": 123
}
],
"roles": [
{
"id": 123,
"name": "<string>"
}
],
"roleNames": [
"<string>"
],
"permissions": "<array>",
"permissionStrings": [
"<string>"
],
"listenStyleMessages": true,
"listenStyleSampleRequest": true,
"listenItemMessages": true,
"listenItemSampleRequest": true,
"displayStyleProperty": "<unknown>",
"displayItemProperty": "<unknown>",
"outOfOfficeFromDate": "2023-11-07T05:31:56Z",
"outOfOfficeToDate": "2023-11-07T05:31:56Z",
"outOfOfficeMessage": "<string>",
"environment": "<string>",
"planTier": "<string>",
"planType": "<string>",
"isSeasonAccessible": true,
"signUpDate": "2023-11-07T05:31:56Z",
"acceptTermRequired": true,
"termFileResource": "<unknown>",
"customTermName": "<string>",
"isLoginHasCustomTermModuleAccess": true,
"notifyForComplianceMessages": true,
"notifyForComplianceQualityTopicMessages": true,
"isUserOutOfOffice": true,
"outOfOfficeNotifyMessage": "<string>",
"userTransfer": {
"userIdToTransferContacts": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"userIdToTransferTasks": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
},
"isPauseNotification": true,
"isTwoFactorEnabled": true,
"isQRCodeGenerated": true,
"criticalPlatformUpdatesSubscription": true,
"platformNewsletterSubscription": true,
"systemAndConfigurationUpdatesSubscription": true,
"showStyleMainTab": true,
"showStyleRecentTab": true,
"showItemMainTab": true,
"showItemRecentTab": true,
"signalrHubUrl": "<string>",
"signalrHubToken": "<string>",
"delogueTerm": {
"id": 123,
"loginId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"acceptedTerms": true,
"acceptedOn": "2023-11-07T05:31:56Z",
"withdrawnOn": "2023-11-07T05:31:56Z",
"lastUpdatedByIP": "<string>"
},
"userCookies": "<array>",
"apiHostUrl": "<string>",
"avatarColor": "<string>",
"userCount": 123,
"isSuperadmin": true,
"showExtensionsTab": true,
"supplierRoles": "<string>"
},
"createdOn": "2023-11-07T05:31:56Z",
"storageLocation": "<string>",
"relatedEntityType": null,
"relatedEntityId": 123,
"createdByOrganizationId": 123,
"isLink": true,
"isDeletedFromS3": true,
"resourceThumbnailAssociation": {
"resourceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"thumbnailResourceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
},
"thumbnails": "<array>",
"fileIconUrl": "<string>",
"thumbnailNotFound": true
},
"marginFactor": 123,
"userDefinedId": "<string>",
"logoThumbnails": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"url": "<string>",
"metadata": "<string>",
"size": 123,
"fileWidth": 123,
"fileHeight": 123,
"provider": "<string>",
"createdBy": {
"loginId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"email": "<string>",
"organizationId": 123,
"organizationTypeId": 123,
"organizationType": "<unknown>",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"activeUsersLimit": 123,
"firstName": "<string>",
"lastName": "<string>",
"password": "<string>",
"status": 123,
"organization": {
"name": "<string>",
"id": 123,
"typeId": 123,
"address": "<string>",
"zipCode": "<string>",
"city": "<string>",
"stateOrRegion": "<string>",
"webSite": "<string>",
"phoneNumber": "<string>",
"faxNumber": "<string>",
"vatNumber": "<string>",
"localCurrency": {
"id": 123,
"countryCurrency": "<string>",
"currencyCode": "<string>",
"value": 123,
"isActive": true,
"name": "<string>"
},
"country": {
"id": 123,
"name": "<string>",
"code": "<string>"
},
"isActive": true,
"isUniqueStyleNumber": true,
"isAutoStyleNumberOn": true,
"isStyleNumberGeneratorActive": true,
"userDefinedSupplierId": "<string>",
"modules": [
{
"id": 123,
"key": 123,
"name": "<string>"
}
],
"createdDate": "2023-11-07T05:31:56Z",
"expiryDate": "2023-11-07T05:31:56Z",
"companyType": {
"id": 123,
"name": "<string>"
},
"brands": [
{
"name": "<string>",
"id": 123,
"organizationId": 123,
"status": true,
"address": "<string>",
"zipCode": "<string>",
"city": "<string>",
"state": "<string>",
"country": {
"id": 123,
"name": "<string>",
"code": "<string>"
},
"logo": "<unknown>",
"isDeleted": true,
"deletedOn": "2023-11-07T05:31:56Z",
"marginFactor": 123,
"userDefinedId": "<string>",
"logoThumbnails": "<array>",
"brandLogoUrl": "<string>"
}
],
"styleServiceDetails": {
"id": 123,
"organizationId": 123,
"serviceUrl": "<string>",
"userName": "<string>",
"password": "<string>",
"authenticationEndPoint": "<string>",
"type": "<unknown>",
"entityType": "<unknown>",
"webServiceType": "<unknown>",
"isReadyForExportAfterScheduledExport": true,
"isReadyForExportAfterExportNow": true,
"transportCredientialType": "<unknown>",
"serviceButtonName": "<string>"
},
"ftpStyleExportTime": {
"id": 123,
"organizationId": 123,
"utcHour": 123,
"utcMinute": 123,
"entityType": "<unknown>",
"limitPerFile": 123,
"recurringInterval": 123,
"hangfireSceduledJobId": "<string>",
"hangfireRecurringJobId": "<string>"
},
"itemServiceDetails": {
"id": 123,
"organizationId": 123,
"serviceUrl": "<string>",
"userName": "<string>",
"password": "<string>",
"authenticationEndPoint": "<string>",
"type": "<unknown>",
"entityType": "<unknown>",
"webServiceType": "<unknown>",
"isReadyForExportAfterScheduledExport": true,
"isReadyForExportAfterExportNow": true,
"transportCredientialType": "<unknown>",
"serviceButtonName": "<string>"
},
"ftpItemExportTime": {
"id": 123,
"organizationId": 123,
"utcHour": 123,
"utcMinute": 123,
"entityType": "<unknown>",
"limitPerFile": 123,
"recurringInterval": 123,
"hangfireSceduledJobId": "<string>",
"hangfireRecurringJobId": "<string>"
},
"supplierServiceDetails": {
"id": 123,
"organizationId": 123,
"serviceUrl": "<string>",
"userName": "<string>",
"password": "<string>",
"authenticationEndPoint": "<string>",
"type": "<unknown>",
"entityType": "<unknown>",
"webServiceType": "<unknown>",
"isReadyForExportAfterScheduledExport": true,
"isReadyForExportAfterExportNow": true,
"transportCredientialType": "<unknown>",
"serviceButtonName": "<string>"
},
"isStyleSupplier": true,
"isItemSupplier": true,
"priceSettings": {
"id": 123,
"organizationId": 123,
"useFuturePrice": true,
"useSimulatePrice": true,
"supplierSimulatePriceRights": "<unknown>",
"lockSupplierOnStylePriceApproval": true
},
"rootFolderToSync": "<string>",
"supplierPortalEnabled": true,
"inviteCode": "<string>",
"hubSpotRecordID": "<string>",
"auth0OrgId": "<string>",
"isAuth0Eligible": true,
"brandNames": [
"<string>"
]
},
"designerOrganization": {
"contactPerson": "<string>",
"contactEmail": "<string>",
"name": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"integrationEmail": "<string>",
"activeUsersLimit": 500,
"planType": {
"id": 123,
"name": "<string>"
},
"planTier": {
"id": 123,
"name": "<string>",
"modules": [
{
"id": 123,
"key": 123,
"name": "<string>"
}
]
},
"logo": "<unknown>",
"useLogoInEmailNotification": true,
"isChurned": true,
"onboardingStartDate": "2023-11-07T05:31:56Z",
"onboardingStatus": 123,
"organizationSettings": {
"unit": 123,
"organizationId": 123,
"hideInActiveSampleType": true,
"hideInActiveCompanyUser": true,
"isSupplierNameWithId": true,
"isShowSupplierFacilities": true,
"styleSupplierFacilityCount": 123,
"isShowMainItemInStyleItemList": true,
"searchAllStylesOrItems": true,
"saveIllustratorFilesLocally": true,
"allowSizeDescriptionFreeText": true,
"enableStyleFilterBarcodeSearch": true,
"setFocusOnStyleBarcodeSearch": true,
"useFraction": true,
"lastQualityTopicNumber": 123,
"showStylesForActiveSeasonsOnIllustrator": true,
"spyIntegrationVersion": 123,
"spyWebhooksEnabled": true
},
"id": 123,
"typeId": 123,
"address": "<string>",
"zipCode": "<string>",
"city": "<string>",
"stateOrRegion": "<string>",
"webSite": "<string>",
"phoneNumber": "<string>",
"faxNumber": "<string>",
"vatNumber": "<string>",
"localCurrency": {
"id": 123,
"countryCurrency": "<string>",
"currencyCode": "<string>",
"value": 123,
"isActive": true,
"name": "<string>"
},
"country": {
"id": 123,
"name": "<string>",
"code": "<string>"
},
"isActive": true,
"isUniqueStyleNumber": true,
"isAutoStyleNumberOn": true,
"isStyleNumberGeneratorActive": true,
"userDefinedSupplierId": "<string>",
"modules": [
{
"id": 123,
"key": 123,
"name": "<string>"
}
],
"createdDate": "2023-11-07T05:31:56Z",
"expiryDate": "2023-11-07T05:31:56Z",
"companyType": {
"id": 123,
"name": "<string>"
},
"brands": [
{
"name": "<string>",
"id": 123,
"organizationId": 123,
"status": true,
"address": "<string>",
"zipCode": "<string>",
"city": "<string>",
"state": "<string>",
"country": {
"id": 123,
"name": "<string>",
"code": "<string>"
},
"logo": "<unknown>",
"isDeleted": true,
"deletedOn": "2023-11-07T05:31:56Z",
"marginFactor": 123,
"userDefinedId": "<string>",
"logoThumbnails": "<array>",
"brandLogoUrl": "<string>"
}
],
"styleServiceDetails": {
"id": 123,
"organizationId": 123,
"serviceUrl": "<string>",
"userName": "<string>",
"password": "<string>",
"authenticationEndPoint": "<string>",
"type": "<unknown>",
"entityType": "<unknown>",
"webServiceType": "<unknown>",
"isReadyForExportAfterScheduledExport": true,
"isReadyForExportAfterExportNow": true,
"transportCredientialType": "<unknown>",
"serviceButtonName": "<string>"
},
"ftpStyleExportTime": {
"id": 123,
"organizationId": 123,
"utcHour": 123,
"utcMinute": 123,
"entityType": "<unknown>",
"limitPerFile": 123,
"recurringInterval": 123,
"hangfireSceduledJobId": "<string>",
"hangfireRecurringJobId": "<string>"
},
"itemServiceDetails": {
"id": 123,
"organizationId": 123,
"serviceUrl": "<string>",
"userName": "<string>",
"password": "<string>",
"authenticationEndPoint": "<string>",
"type": "<unknown>",
"entityType": "<unknown>",
"webServiceType": "<unknown>",
"isReadyForExportAfterScheduledExport": true,
"isReadyForExportAfterExportNow": true,
"transportCredientialType": "<unknown>",
"serviceButtonName": "<string>"
},
"ftpItemExportTime": {
"id": 123,
"organizationId": 123,
"utcHour": 123,
"utcMinute": 123,
"entityType": "<unknown>",
"limitPerFile": 123,
"recurringInterval": 123,
"hangfireSceduledJobId": "<string>",
"hangfireRecurringJobId": "<string>"
},
"supplierServiceDetails": {
"id": 123,
"organizationId": 123,
"serviceUrl": "<string>",
"userName": "<string>",
"password": "<string>",
"authenticationEndPoint": "<string>",
"type": "<unknown>",
"entityType": "<unknown>",
"webServiceType": "<unknown>",
"isReadyForExportAfterScheduledExport": true,
"isReadyForExportAfterExportNow": true,
"transportCredientialType": "<unknown>",
"serviceButtonName": "<string>"
},
"isStyleSupplier": true,
"isItemSupplier": true,
"priceSettings": {
"id": 123,
"organizationId": 123,
"useFuturePrice": true,
"useSimulatePrice": true,
"supplierSimulatePriceRights": "<unknown>",
"lockSupplierOnStylePriceApproval": true
},
"rootFolderToSync": "<string>",
"supplierPortalEnabled": true,
"inviteCode": "<string>",
"hubSpotRecordID": "<string>",
"auth0OrgId": "<string>",
"isAuth0Eligible": true,
"brandNames": [
"<string>"
]
},
"associatedDesignerOrganizations": [
{
"contactPerson": "<string>",
"contactEmail": "<string>",
"name": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"integrationEmail": "<string>",
"activeUsersLimit": 500,
"planType": {
"id": 123,
"name": "<string>"
},
"planTier": {
"id": 123,
"name": "<string>",
"modules": [
{
"id": 123,
"key": 123,
"name": "<string>"
}
]
},
"logo": "<unknown>",
"useLogoInEmailNotification": true,
"isChurned": true,
"onboardingStartDate": "2023-11-07T05:31:56Z",
"onboardingStatus": 123,
"organizationSettings": {
"unit": 123,
"organizationId": 123,
"hideInActiveSampleType": true,
"hideInActiveCompanyUser": true,
"isSupplierNameWithId": true,
"isShowSupplierFacilities": true,
"styleSupplierFacilityCount": 123,
"isShowMainItemInStyleItemList": true,
"searchAllStylesOrItems": true,
"saveIllustratorFilesLocally": true,
"allowSizeDescriptionFreeText": true,
"enableStyleFilterBarcodeSearch": true,
"setFocusOnStyleBarcodeSearch": true,
"useFraction": true,
"lastQualityTopicNumber": 123,
"showStylesForActiveSeasonsOnIllustrator": true,
"spyIntegrationVersion": 123,
"spyWebhooksEnabled": true
},
"id": 123,
"typeId": 123,
"address": "<string>",
"zipCode": "<string>",
"city": "<string>",
"stateOrRegion": "<string>",
"webSite": "<string>",
"phoneNumber": "<string>",
"faxNumber": "<string>",
"vatNumber": "<string>",
"localCurrency": {
"id": 123,
"countryCurrency": "<string>",
"currencyCode": "<string>",
"value": 123,
"isActive": true,
"name": "<string>"
},
"country": {
"id": 123,
"name": "<string>",
"code": "<string>"
},
"isActive": true,
"isUniqueStyleNumber": true,
"isAutoStyleNumberOn": true,
"isStyleNumberGeneratorActive": true,
"userDefinedSupplierId": "<string>",
"modules": [
{
"id": 123,
"key": 123,
"name": "<string>"
}
],
"createdDate": "2023-11-07T05:31:56Z",
"expiryDate": "2023-11-07T05:31:56Z",
"companyType": {
"id": 123,
"name": "<string>"
},
"brands": [
{
"name": "<string>",
"id": 123,
"organizationId": 123,
"status": true,
"address": "<string>",
"zipCode": "<string>",
"city": "<string>",
"state": "<string>",
"country": {
"id": 123,
"name": "<string>",
"code": "<string>"
},
"logo": "<unknown>",
"isDeleted": true,
"deletedOn": "2023-11-07T05:31:56Z",
"marginFactor": 123,
"userDefinedId": "<string>",
"logoThumbnails": "<array>",
"brandLogoUrl": "<string>"
}
],
"styleServiceDetails": {
"id": 123,
"organizationId": 123,
"serviceUrl": "<string>",
"userName": "<string>",
"password": "<string>",
"authenticationEndPoint": "<string>",
"type": "<unknown>",
"entityType": "<unknown>",
"webServiceType": "<unknown>",
"isReadyForExportAfterScheduledExport": true,
"isReadyForExportAfterExportNow": true,
"transportCredientialType": "<unknown>",
"serviceButtonName": "<string>"
},
"ftpStyleExportTime": {
"id": 123,
"organizationId": 123,
"utcHour": 123,
"utcMinute": 123,
"entityType": "<unknown>",
"limitPerFile": 123,
"recurringInterval": 123,
"hangfireSceduledJobId": "<string>",
"hangfireRecurringJobId": "<string>"
},
"itemServiceDetails": {
"id": 123,
"organizationId": 123,
"serviceUrl": "<string>",
"userName": "<string>",
"password": "<string>",
"authenticationEndPoint": "<string>",
"type": "<unknown>",
"entityType": "<unknown>",
"webServiceType": "<unknown>",
"isReadyForExportAfterScheduledExport": true,
"isReadyForExportAfterExportNow": true,
"transportCredientialType": "<unknown>",
"serviceButtonName": "<string>"
},
"ftpItemExportTime": {
"id": 123,
"organizationId": 123,
"utcHour": 123,
"utcMinute": 123,
"entityType": "<unknown>",
"limitPerFile": 123,
"recurringInterval": 123,
"hangfireSceduledJobId": "<string>",
"hangfireRecurringJobId": "<string>"
},
"supplierServiceDetails": {
"id": 123,
"organizationId": 123,
"serviceUrl": "<string>",
"userName": "<string>",
"password": "<string>",
"authenticationEndPoint": "<string>",
"type": "<unknown>",
"entityType": "<unknown>",
"webServiceType": "<unknown>",
"isReadyForExportAfterScheduledExport": true,
"isReadyForExportAfterExportNow": true,
"transportCredientialType": "<unknown>",
"serviceButtonName": "<string>"
},
"isStyleSupplier": true,
"isItemSupplier": true,
"priceSettings": {
"id": 123,
"organizationId": 123,
"useFuturePrice": true,
"useSimulatePrice": true,
"supplierSimulatePriceRights": "<unknown>",
"lockSupplierOnStylePriceApproval": true
},
"rootFolderToSync": "<string>",
"supplierPortalEnabled": true,
"inviteCode": "<string>",
"hubSpotRecordID": "<string>",
"auth0OrgId": "<string>",
"isAuth0Eligible": true,
"brandNames": [
"<string>"
]
}
],
"accessToAllBrands": true,
"isTaskOrContactsAssign": true,
"brands": [
{
"name": "<string>",
"id": 123,
"organizationId": 123,
"status": true,
"address": "<string>",
"zipCode": "<string>",
"city": "<string>",
"state": "<string>",
"country": {
"id": 123,
"name": "<string>",
"code": "<string>"
},
"logo": "<unknown>",
"isDeleted": true,
"deletedOn": "2023-11-07T05:31:56Z",
"marginFactor": 123,
"userDefinedId": "<string>",
"logoThumbnails": "<array>",
"brandLogoUrl": "<string>"
}
],
"adminUnits": [
{
"name": "<string>",
"id": 123,
"userDefinedId": "<string>",
"organizationId": 123,
"isFraction": true,
"changes": [
{
"propertyName": "<string>",
"oldValue": "<unknown>",
"newValue": "<unknown>"
}
]
}
],
"adminFacilityType": [
{
"name": "<string>",
"id": 123,
"userDefinedId": "<string>",
"organizationId": 123,
"isActive": true,
"position": 123
}
],
"roles": [
{
"id": 123,
"name": "<string>"
}
],
"roleNames": [
"<string>"
],
"permissions": "<array>",
"permissionStrings": [
"<string>"
],
"listenStyleMessages": true,
"listenStyleSampleRequest": true,
"listenItemMessages": true,
"listenItemSampleRequest": true,
"displayStyleProperty": "<unknown>",
"displayItemProperty": "<unknown>",
"outOfOfficeFromDate": "2023-11-07T05:31:56Z",
"outOfOfficeToDate": "2023-11-07T05:31:56Z",
"outOfOfficeMessage": "<string>",
"environment": "<string>",
"planTier": "<string>",
"planType": "<string>",
"isSeasonAccessible": true,
"signUpDate": "2023-11-07T05:31:56Z",
"acceptTermRequired": true,
"termFileResource": "<unknown>",
"customTermName": "<string>",
"isLoginHasCustomTermModuleAccess": true,
"notifyForComplianceMessages": true,
"notifyForComplianceQualityTopicMessages": true,
"isUserOutOfOffice": true,
"outOfOfficeNotifyMessage": "<string>",
"userTransfer": {
"userIdToTransferContacts": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"userIdToTransferTasks": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
},
"isPauseNotification": true,
"isTwoFactorEnabled": true,
"isQRCodeGenerated": true,
"criticalPlatformUpdatesSubscription": true,
"platformNewsletterSubscription": true,
"systemAndConfigurationUpdatesSubscription": true,
"showStyleMainTab": true,
"showStyleRecentTab": true,
"showItemMainTab": true,
"showItemRecentTab": true,
"signalrHubUrl": "<string>",
"signalrHubToken": "<string>",
"delogueTerm": {
"id": 123,
"loginId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"acceptedTerms": true,
"acceptedOn": "2023-11-07T05:31:56Z",
"withdrawnOn": "2023-11-07T05:31:56Z",
"lastUpdatedByIP": "<string>"
},
"userCookies": "<array>",
"apiHostUrl": "<string>",
"avatarColor": "<string>",
"userCount": 123,
"isSuperadmin": true,
"showExtensionsTab": true,
"supplierRoles": "<string>"
},
"createdOn": "2023-11-07T05:31:56Z",
"storageLocation": "<string>",
"relatedEntityType": null,
"relatedEntityId": 123,
"createdByOrganizationId": 123,
"isLink": true,
"isDeletedFromS3": true,
"resourceThumbnailAssociation": {
"resourceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"thumbnailResourceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
},
"thumbnails": "<array>",
"fileIconUrl": "<string>",
"thumbnailNotFound": true
}
]
}
}{
"status": "<unknown>",
"code": "<string>",
"error": {
"details": [
{
"type": "<string>",
"field": "<string>",
"value": "<string>"
}
]
}
}{
"status": "<unknown>",
"code": "<string>",
"error": {
"details": [
{
"type": "<string>",
"field": "<string>",
"value": "<string>"
}
]
}
}{
"status": "<unknown>",
"code": "<string>",
"error": {
"details": [
{
"type": "<string>",
"field": "<string>",
"value": "<string>"
}
]
}
}{
"status": "<unknown>",
"code": "<string>",
"error": {
"details": [
{
"type": "<string>",
"field": "<string>",
"value": "<string>"
}
]
}
}{
"status": "<unknown>",
"code": "<string>",
"error": {
"details": [
{
"type": "<string>",
"field": "<string>",
"value": "<string>"
}
]
}
}{
"status": "<unknown>",
"code": "<string>",
"error": {
"details": [
{
"type": "<string>",
"field": "<string>",
"value": "<string>"
}
]
}
}{
"status": "<unknown>",
"code": "<string>",
"error": {
"details": [
{
"type": "<string>",
"field": "<string>",
"value": "<string>"
}
]
}
}⌘I