Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .last-synced-sha
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6511eaa51b6a7897e843df1f589f6f72871db04f
92c26f238d687ab6789678d8c59aef0b803cdf94
56 changes: 52 additions & 4 deletions spec/open-api-spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12531,11 +12531,19 @@ paths:
example: '123456'
verification_id:
type: string
description: The ID of the Radar SMS verification being confirmed.
description: >-
The ID of the Radar SMS verification being confirmed.
Required for sign-up challenges; omitted for sign-in
challenges, where the verification is resolved
server-side.
example: vrf_01HXYZ123456789ABCDEFGHIJ
phone_number:
type: string
description: The phone number the Radar SMS challenge was sent to.
description: >-
The phone number the Radar SMS challenge was sent to.
Required for sign-up challenges; omitted for sign-in
challenges, where the phone number on file is resolved
server-side.
example: '+15555550123'
pending_authentication_token:
type: string
Expand All @@ -12560,8 +12568,6 @@ paths:
- client_secret
- grant_type
- code
- verification_id
- phone_number
- pending_authentication_token
- type: object
properties:
Expand Down Expand Up @@ -12731,6 +12737,34 @@ paths:
required:
- code
- message
- type: object
properties:
code:
type: string
description: The error code identifying the type of error.
example: phone_number_required
const: phone_number_required
message:
type: string
description: A human-readable description of the error.
example: Request could not be processed.
required:
- code
- message
- type: object
properties:
code:
type: string
description: The error code identifying the type of error.
example: verification_id_required
const: verification_id_required
message:
type: string
description: A human-readable description of the error.
example: Request could not be processed.
required:
- code
- message
- type: object
properties:
error:
Expand Down Expand Up @@ -13231,6 +13265,20 @@ paths:
required:
- code
- message
- type: object
properties:
code:
type: string
description: The error code identifying the type of error.
example: radar_sms_sign_in_challenge
const: radar_sms_sign_in_challenge
message:
type: string
description: A human-readable description of the error.
example: Request could not be processed.
required:
- code
- message
- type: object
properties:
code:
Expand Down
Loading