@vsi
What should we do if the director doesn’t have a mailing address? I just submitted a change of directors filing for BC3000264 where the fields for the mailing address are all empty strings:
{
"filing": {
"header": {
"name": "changeOfDirectors",
"date": "{{today}}",
"certifiedBy": "First Last",
"accountId": "XXXXX",
"effectiveDate": "{{effectiveDate}}"
},
"business": {
"foundingDate": "2025-05-02T23:10:14.066901+00:00",
"identifier": "BC3000264",
"legalName": "3000264 B.C. LTD.",
"legalType": "BC"
},
"changeOfDirectors": {
"directors": [
{
"appointmentDate": "{{today}}",
"cessationDate": null,
"officer": {
"firstName": "Patty",
"middleInitial": "",
"lastName": "New",
"prevLastName": "",
"prevFirstName": "",
"prevMiddleInitial": ""
},
"actions": [
"addressChanged"
],
"deliveryAddress": {
"streetAddress": "456 Bay Street",
"streetAddressAdditional": "",
"addressCity": "Vancouver",
"addressRegion": "BC",
"postalCode": "V7N 2N9",
"addressCountry": "CA"
},
"mailingAddress": {
"streetAddress": "",
"streetAddressAdditional": "",
"addressCity": "",
"postalCode": "",
"addressRegion": "",
"addressCountry": ""
}
}
]
}
}
}
But somehow it set the country for the mailing address to “GB”? In the change of directors document, the country says “United Kingdom” and when I get the directors for the company, it returns:
{
"directors": [
{
"appointmentDate": "2025-05-02",
"cessationDate": null,
"deliveryAddress": {
"addressCity": "Vancouver",
"addressCountry": "CA",
"addressRegion": "BC",
"deliveryInstructions": "",
"id": 4896759,
"postalCode": "V7N 2N9",
"streetAddress": "456 Bay Street",
"streetAddressAdditional": ""
},
"mailingAddress": {
"addressCity": "",
"addressCountry": "GB",
"addressRegion": "",
"deliveryInstructions": "",
"id": 4896760,
"postalCode": "",
"streetAddress": "",
"streetAddressAdditional": ""
},
"officer": {
"email": "patty@test.com",
"firstName": "PATTY",
"id": 2588071,
"lastName": "NEW",
"partyType": "person"
},
"role": "director"
}
]
}