🔍 Step 1: Locate Your Organization ID
You can find your organization by logging into your Raklet Admin Panel.
Go to Admin > Settings.
Your Organization ID will be listed at the top of your general settings.
✅ Make Your First API Call (Get Org Settings)
Now that you have your access_token and organizationId, let’s make your first real API call.
🛠 Endpoint:
/app/organisations/{organisationId}/settings
Replace {organisationId} with the value you got in the previous step.
🔧 Sample Request:
curl -X GET https://api.raklet.com/app/organisations/{organisationId}/settings \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
📥 Sample Response:
{
"Id": "86a29ec2-364d-47d3-a74b-70b43ff100b0",
"Name": "Demo Inc.",
"ShortName": "Demo Inc.",
"Permalink": "demo",
"Language": "en",
"TimeZoneId": "W. Europe Standard Time",
"StripeCustomerId": "cus_DesodKw2zr3yaS",
"StripePlanId": "premium10000_2023v1_yearly",
"ActiveUntil": "2018-10-23T14:59:03",
"OrganisationColor1": "#fc8010",
"OrganisationColor2": null,
"Currency": 1,
"State": 0,
"LogoUrl": "86a29ec2-364d-47d3-a74b-70b43ff100b0/LogoT128-75cb5f6488934bc2b82d0508a9d2280c_s128.png",
"LogoWidth": 128,
"LogoHeight": 128,
"LoginPageTitle": null,
"IsDeleted": false,
"CreatedOn": "2018-09-23T14:59:01.877",
"SmsProfit": 0,
"InvoiceAddress": null,
"IsLoginSocialNetworkEnabled": true,
"IsLoginSmsEnabled": true,
"IsLoginPasswordEnabled": true,
"IsLoginWithOneTimeLoginEnabled": false,
"IsLoginTwoFactorEnabled": false,
"IsMemberListVisible": true,
"IsCompanyListVisible": true,
"IsSectorListVisible": true,
"IsSchoolListVisible": true,
"IsCityListVisible": true,
"IsCountryListVisible": true,
"IsJobPostingsEnabled": true,
"IsOfferedServicesEnabled": true,
"IsApplicationFormEnabled": true,
"ApplicationFormTitle": null,
"ApplicationFormHeader": null,
"ApplicationFormFooter": null,
"ApplicationFormBenefits": null,
"MembershipTerms": null,
"TermsOfUseApp": "test",
"TermsOfUse2App": null,
"ApplicationFormIsAddressEnabled": false,
"ApplicationFormIsCommentsEnabled": false,
"ApplicationFormIsGenderEnabled": false,
"ApplicationFormIsBirthDateEnabled": false,
"ApplicationFormIsBirthPlaceEnabled": false,
"ApplicationFormIsNationalityEnabled": false,
"ApplicationFormIsTaxNumberEnabled": false,
"ApplicationFormIsUnder18ControlEnabled": false,
"ApplicationFormIsCreditCardFormEnabled": false,
"ApplicationFormRegistrationFee": 100,
"ApplicationFormAgreement": null,
"SmsIsEnabled": false,
"IsPaymentEnabled": true,
"IsDonationEnabled": true,
"IsCustomPaymentEnabled": false,
"PaymentHeader": null,
"PaymentFooter": null,
"IsPayUEnabled": false,
"IsMikroOdemeEnabled": false,
"MikroOdemeUsername": null,
"MikroOdemePassword": null,
"IsPayPalEnabled": false,
"PaypalMerchantId": null,
"IsOnlineCreditCardEnabled": true,
"OnlineCreditCardSubMerchantId": "acct_1FQKOoEpE1BbQraN",
"CreditCardProcessor": 0,
"CommissionRate": 3.9,
"CommissionFee": 0.9,
"CommissionFeeCurrency": 0,
"OrganisationSupportEmail": "[email protected]",
"OrganisationSupportPhone": "14152340554",
"WelcomeImageUrl": null,
"WelcomeSubject": null,
"WelcomeText": null,
"DefaultPhoneCountryCode": "1",
"DefaultAddressCountry": "TR",
"DefaultSmsIdentityId": "fe6ea690-cbe4-45f3-bb4c-69bf5fa15224",
"DefaultEmailIdentityId": "ac6d58fa-03c8-4e55-8b13-0482b6226d8d",
"MemberNoType": 1,
"LegalEntityVerificationDocumentUrl": null,
"LegalEntityOwnersVerificationDocumentUrl": null,
"IsWeeklyNewsletterEnabled": true,
"IsWeeklyNewsletterAnnouncements": false,
"IsWeeklyNewsletterDonationCampaigns": false,
"IsWeeklyNewsletterNewMembersEnabled": false,
"IsWeeklyNewsletterJobOffers": false,
"IsWeeklyNewsletterJobSeekers": false,
"IsWeeklyNewsletterServices": false,
"IsWeeklyNewsletterMemberUnreadMessages": false,
"IsWeeklyNewsletterMemberDebt": false,
"GoogleAnalyticsTrackerId": null,
"Balance": 0,
"TotalCost": 0,
"TotalProfit": 0,
"IsTermsOfUseRequiredForAccess": false
}
🎉 That’s it!
You’ve now:
Authenticated successfully ✅
Retrieved your organization ID ✅
Made your first successful API call ✅
You’re ready to start working with members, plans, and more.