Freshteam - Create applicant - Valid phone number format

I’m trying to create applicant, and I get error:

{
  "errors": [{
    "code": "invalid_value",
    "message": "It should be in the 'valid phone number' format",
    "field": "candidate.mobile"
  }]
}

The request is:

{
  "candidate": {
    "first_name": "Test", 
    "last_name": "Test", 
    "email": "test@example.com",
    "source_id": 1, 
    "source_category_id": 1,
    "resumes": [], 
    "mobile": "800123456" 
  }
}

What is the “valid phone number format”?

@Vladimir_Vlcek ,
Good Day!
I think the mobile number which you are passing is not valid,
in your sample, it has a char length of 9 but it expects 10 chars as per the docs

Hope it helps

Thanks

Thanks for the reply, I didn’t find any doc about the phone number format, do you have a link please?

@Vladimir_Vlcek,
Unfortunately, there is no such doc available for the format, but you can find the sample response that contains format of mobile number.

Hope it helps

Thanks