Bring This Food
  1. otp
Bring This Food
  • https
    • v1
      • account
        • account - get
        • account - delete
        • account - update overview
        • bank - update
        • menu - update overview
        • menu - add combo item
        • menu - add other(categorised) item
        • menu - update item
        • menu - delete item
        • menu - add category
        • menu - update category
        • menu - delete category
        • menu - get categories
        • role-category - verify
        • store - update
      • auth
        • reset password
        • sign-up
        • sign-in
        • sign-out
      • existence
        • telephone existence
      • invite-code
        • send invite code
      • menus
        • menu items
      • request
        • accept request
        • reject request
      • otp
        • send otp
          POST
        • verify otp
          POST
      • pagination
        • first request
        • next request
      • upload
        • upload file
      • user
        • get user
        • send role-category request
        • menu categories
        • menu items - all
        • menu items - combo
        • menu items - categorised
      • users
        • get vendors
  • Schemas
    • v1
      • file
        • uploadedFile
      • otp
        • otp
      • price
        • priceProps
      • query
        • paginationProps
      • request
        • headerAuthorization
      • responses
        • 200 - success
        • 208 - already done
        • 400 - bad request
        • 401 - unauthorised
        • 403 - forbidden
        • 404 - not found
        • 409 - conflict
        • 410 - gone
        • 500 - server error
      • user
        • basicUser
        • extendedUser
        • user
        • location
        • userRequest
        • userRole
        • userTelephone
        • userTokens
        • userPassword
        • store
        • weeklyAvailability
        • timeRangeProps
        • iso24HrTime
        • bank
        • verificationStatus
        • timezoneOffset
      • user-store-menu
        • storeMenuCategory
        • storeMenuCategoryItem
        • storeMenuComboItem
        • storeMenuOverview
  1. otp

send otp

dev-env-v1
https://btf-node.vercel.app/v1
dev-env-v1
https://btf-node.vercel.app/v1
POST
https://btf-node.vercel.app/v1
/otp
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://btf-node.vercel.app/v1/otp' \
--header 'Content-Type: application/json' \
--data-raw '{
    "telephone": "+2349012345678",
    "reason": "sign-up"
}'
Response Response Example
200 - Example 1
{
    "success": true,
    "statusCode": 200,
    "data": {
        "otp": {
            "code": "only-appears-in-dev-mode",
            "expiryTimestamp": "2025-08-03T09:54:55.304Z"
        }
    },
    "message": "an OTP has been successfully sent to your phone number"
}

Request

Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

🟠400400 - bad request
🟠409409 - conflict
Modified at 2025-08-12 09:03:55
Previous
reject request
Next
verify otp
Built with