Is it common to have the phone number

Is it common to have the phone number provided as invalid? Is there any rule to pass a "valid" phone number?
No description
2 Replies
Prastoin
Prastoin22h ago
Hey @Pedro Talaia could you please share the request format ? this should be following
@ValidateIf((_object, value) => value !== null)
@IsQuotedString()
primaryPhoneNumber: string | null;

@ValidateIf((_object, value) => value !== null)
@IsQuotedString()
primaryPhoneCountryCode: string | null;

@ValidateIf((_object, value) => value !== null)
@IsQuotedString()
primaryPhoneCallingCode: string | null;

@ValidateIf((_object, value) => value !== null)
@IsObject()
additionalPhones: object | null;
@ValidateIf((_object, value) => value !== null)
@IsQuotedString()
primaryPhoneNumber: string | null;

@ValidateIf((_object, value) => value !== null)
@IsQuotedString()
primaryPhoneCountryCode: string | null;

@ValidateIf((_object, value) => value !== null)
@IsQuotedString()
primaryPhoneCallingCode: string | null;

@ValidateIf((_object, value) => value !== null)
@IsObject()
additionalPhones: object | null;
Pedro Talaia
Pedro TalaiaOP19h ago
Sorry but where can I check this? I can't check this on the workflow run right? It's on the Docker Container run ?

Did you find this page helpful?