RegisterWithPhonePassword
Type: schema
TypeScript Definition
typescript
RegisterWithPhonePassword: {{
/** @description Two-letter code begin with a plus sign prefix that identifies different countries. By default it will be +91 if not provided. */
country_code?: string | null;
/** @description 10 digit phone number without country code. */
phone: string;
password: string;
confirm_password: string;
email?: string | null;
};
/** RevokeSubscription */
}OpenAPI Schema
json
{
"title": "RegisterWithPhonePassword",
"type": "object",
"externalDocs": {
"url": "https://llm-docs.commercengine.io/storefront/schemas/RegisterWithPhonePassword",
"description": "API reference for the RegisterWithPhonePassword schema"
},
"required": [
"phone",
"password",
"confirm_password"
],
"properties": {
"country_code": {
"description": "Two-letter code begin with a plus sign prefix that identifies different countries. By default it will be +91 if not provided.",
"type": [
"string",
"null"
]
},
"phone": {
"description": "10 digit phone number without country code.",
"type": "string"
},
"password": {
"type": "string"
},
"confirm_password": {
"type": "string"
},
"email": {
"type": [
"string",
"null"
]
}
}
}Auto-generated from OpenAPI spec and TypeScript definitions