forked from linode/linodego
-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile_phone_number.go
48 lines (40 loc) · 1.51 KB
/
profile_phone_number.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package linodego
import (
"context"
"encoding/json"
)
// SendPhoneNumberVerificationCodeOptions fields are those accepted by SendPhoneNumberVerificationCode
type SendPhoneNumberVerificationCodeOptions struct {
ISOCode string `json:"iso_code"`
PhoneNumber string `json:"phone_number"`
}
// VerifyPhoneNumberOptions fields are those accepted by VerifyPhoneNumber
type VerifyPhoneNumberOptions struct {
OTPCode string `json:"otp_code"`
}
// SendPhoneNumberVerificationCode sends a one-time verification code via SMS message to the submitted phone number.
func (c *Client) SendPhoneNumberVerificationCode(ctx context.Context, opts SendPhoneNumberVerificationCodeOptions) error {
body, err := json.Marshal(opts)
if err != nil {
return err
}
e := "profile/phone-number"
_, err = coupleAPIErrors(c.R(ctx).SetBody(string(body)).Post(e))
return err
}
// DeletePhoneNumber deletes the verified phone number for the User making this request.
func (c *Client) DeletePhoneNumber(ctx context.Context) error {
e := "profile/phone-number"
_, err := coupleAPIErrors(c.R(ctx).Delete(e))
return err
}
// VerifyPhoneNumber verifies a phone number by confirming the one-time code received via SMS message after accessing the Phone Verification Code Send command.
func (c *Client) VerifyPhoneNumber(ctx context.Context, opts VerifyPhoneNumberOptions) error {
body, err := json.Marshal(opts)
if err != nil {
return err
}
e := "profile/phone-number/verify"
_, err = coupleAPIErrors(c.R(ctx).SetBody(string(body)).Post(e))
return err
}