Skip to content

Commit

Permalink
Fix Create Org Business Card and Zip Code example
Browse files Browse the repository at this point in the history
  • Loading branch information
KarbonStuartK committed Nov 2, 2022
1 parent b3a307d commit c64b6c9
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 29 deletions.
54 changes: 28 additions & 26 deletions KarbonAPI.json
Original file line number Diff line number Diff line change
Expand Up @@ -4588,33 +4588,35 @@
"Type": "Basic"
}
},
"BusinessCards": {
"BusinessCardKey": "2tBHyXtJBxBy",
"IsPrimaryCard": true,
"WebSites": ["www.website.one", "www.website.two"],
"EmailAddresses": ["[email protected]", "[email protected]"],
"OrganizationKey": "ZGNmtYyLm4z",
"RoleOrTitle": "COO",
"FacebookLink": "facebook.com/sampleName",
"LinkedInLink": "linkedin.com/sampleName",
"TwitterLink": "twitter.com/sampleName",
"SkypeLink": "skype.com/sampleName",
"Addresses": {
"AddressKey": "e150a05a-2dea-4292-8bc8-03398c9384e4",
"AddressLines": "45 Sample Street",
"City": "Alexandria",
"StateProvinceCounty": "NSW",
"ZipCode": 2015,
"CountryCode": "AU",
"Label": "Physical"
},
"PhoneNumbers": {
"PhoneNumberKey": "6e0b9ace-24b1-4328-a922-3b8be5ef5052",
"Number": 1234567890,
"CountryCode": 61,
"Label": "Work"
"BusinessCards": [
{
"BusinessCardKey": "2tBHyXtJBxBy",
"IsPrimaryCard": true,
"WebSites": ["www.website.one", "www.website.two"],
"EmailAddresses": ["[email protected]", "[email protected]"],
"OrganizationKey": "ZGNmtYyLm4z",
"RoleOrTitle": "COO",
"FacebookLink": "facebook.com/sampleName",
"LinkedInLink": "linkedin.com/sampleName",
"TwitterLink": "twitter.com/sampleName",
"SkypeLink": "skype.com/sampleName",
"Addresses": {
"AddressKey": "e150a05a-2dea-4292-8bc8-03398c9384e4",
"AddressLines": "45 Sample Street",
"City": "Alexandria",
"StateProvinceCounty": "NSW",
"ZipCode": "2015",
"CountryCode": "AU",
"Label": "Physical"
},
"PhoneNumbers": {
"PhoneNumberKey": "6e0b9ace-24b1-4328-a922-3b8be5ef5052",
"Number": "1234567890",
"CountryCode": "61",
"Label": "Work"
}
}
}
]
}
}
}
Expand Down
6 changes: 3 additions & 3 deletions KarbonAPI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3517,13 +3517,13 @@ paths:
AddressLines: 45 Sample Street
City: Alexandria
StateProvinceCounty: NSW
ZipCode: 2015
ZipCode: "2015"
CountryCode: AU
Label: Physical
PhoneNumbers:
PhoneNumberKey: 6e0b9ace-24b1-4328-a922-3b8be5ef5052
Number: 1234567890
CountryCode: 61
Number: "1234567890"
CountryCode: "61"
Label: Work
"/v3/Organizations/GetOrganizationByUserDefinedIdentifier(UserDefinedIdentifier='{UserDefinedIdentifier}')":
get:
Expand Down

0 comments on commit c64b6c9

Please sign in to comment.