Skip to main content
GET
/
v1
/
accounts
/
{userId}
Get Account Details
curl --request GET \
  --url https://api.iklim.co/v1/accounts/{userId}
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"userId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"type": "INDIVIDUAL",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"mobilePhoneNumber": "<string>",
"location": "<string>",
"company": "<string>",
"industry": "<string>",
"profilePictureUrl": "<string>",
"subscriptionPlan": "NONE",
"emailVerified": true,
"mobilePhoneNumberVerified": true
}

Path Parameters

userId
string
required

Response

Successful Account Detail Retrieval

id
string<uuid>

Account Identifier

userId
string<uuid>

User Identifier

type
enum<string>

Account Type

Available options:
INDIVIDUAL,
ORGANIZATION
createdAt
string<date-time>

Account Creation Date

updatedAt
string<date-time>

Account Update Date

mobilePhoneNumber
string

Account Mobile Phone Number

location
string

Account Address

company
string

Account Company Name

industry
string

Account Industry

profilePictureUrl
string

Account Profile Picture URL

subscriptionPlan
enum<string>

Account Subscription Plan

Available options:
NONE,
TRIAL,
BASIC_MONTHLY,
BASIC_YEARLY,
PREMIUM_MONTHLY,
PREMIUM_YEARLY,
CUSTOM
emailVerified
boolean

Is E-mail Verified?

mobilePhoneNumberVerified
boolean

Is Mobile Phone Number Verified?