Chaldal Organization API

The Organization API from Chaldal — 5 operation(s) for organization.

Operations 5

POST /api/Organization/CreateOrganization #
POST /api/Organization/GetOrgStatus #
POST /api/Organization/AddOrgPickupPoint #
GET /api/Organization/GetOrgPickupPoints #
GET /api/Organization/GetOrgPickupPointByTrackingRef #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/chaldal-organization-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

chaldal-organization-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: My Title Accounts Organization API
  version: 1.0.0
servers:
- url: https://eggtransport.chaldal.com
tags:
- name: Organization
paths:
  /api/Organization/CreateOrganization:
    post:
      tags:
      - Organization
      operationId: Organization_CreateOrganization
      responses:
        '200':
          description: Creates a new Organization and assigns a manager to the organization
          content:
            text/plain:
              schema:
                type: integer
                format: int32
            text/csv:
              schema:
                type: integer
                format: int32
            application/json:
              schema:
                type: integer
                format: int32
            text/json:
              schema:
                type: integer
                format: int32
        '401':
          description: Not logged in
        '500':
          description: Insert Organization operation failed
      requestBody:
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/OrganizationDto'
          application/json:
            schema:
              $ref: '#/components/schemas/OrganizationDto'
          text/json:
            schema:
              $ref: '#/components/schemas/OrganizationDto'
          application/*+json:
            schema:
              $ref: '#/components/schemas/OrganizationDto'
        required: true
  /api/Organization/GetOrgStatus:
    post:
      tags:
      - Organization
      operationId: Organization_GetOrgStatus
      responses:
        '200':
          description: Retrives Organization status
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/FSharpOptionOfOrgVerificationStatusDto'
            text/csv:
              schema:
                $ref: '#/components/schemas/FSharpOptionOfOrgVerificationStatusDto'
            application/json:
              schema:
                $ref: '#/components/schemas/FSharpOptionOfOrgVerificationStatusDto'
            text/json:
              schema:
                $ref: '#/components/schemas/FSharpOptionOfOrgVerificationStatusDto'
        '401':
          description: Not logged in
        '400':
          description: OrgId does not exist
  /api/Organization/AddOrgPickupPoint:
    post:
      tags:
      - Organization
      operationId: Organization_AddOrgPickupPoint
      responses:
        '200':
          description: Creates a new Address and assigns it to an organization
          content:
            text/plain:
              schema:
                type: integer
                format: int32
            text/csv:
              schema:
                type: integer
                format: int32
            application/json:
              schema:
                type: integer
                format: int32
            text/json:
              schema:
                type: integer
                format: int32
        '401':
          description: Not logged in
        '500':
          description: Insert Address operation failed
      requestBody:
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/OrgPickupPointDto'
          application/json:
            schema:
              $ref: '#/components/schemas/OrgPickupPointDto'
          text/json:
            schema:
              $ref: '#/components/schemas/OrgPickupPointDto'
          application/*+json:
            schema:
              $ref: '#/components/schemas/OrgPickupPointDto'
        required: true
  /api/Organization/GetOrgPickupPoints:
    get:
      tags:
      - Organization
      operationId: Organization_GetOrgPickupPoints
      responses:
        '200':
          description: Fetches addresses of an organization
          content:
            text/plain:
              schema:
                type: integer
                format: int32
            text/csv:
              schema:
                type: integer
                format: int32
            application/json:
              schema:
                type: integer
                format: int32
            text/json:
              schema:
                type: integer
                format: int32
        '401':
          description: Not logged in
  /api/Organization/GetOrgPickupPointByTrackingRef:
    get:
      tags:
      - Organization
      operationId: Organization_GetOrgPickupPointByTrackingRef
      parameters:
      - name: trackingRef
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Fetches address by tracking ref
          content:
            text/plain:
              schema:
                type: integer
                format: int32
            text/csv:
              schema:
                type: integer
                format: int32
            application/json:
              schema:
                type: integer
                format: int32
            text/json:
              schema:
                type: integer
                format: int32
        '401':
          description: Not logged in
        '404':
          description: No address found
components:
  schemas:
    OrganizationDto:
      type: object
      properties:
        businessDetails:
          $ref: '#/components/schemas/BusinessDetailsDto'
        businessType:
          $ref: '#/components/schemas/BusinessTypeDto'
        paymentType:
          $ref: '#/components/schemas/PaymentTypeDto'
        bKashDetails:
          $ref: '#/components/schemas/FSharpOptionOfBkashDetailsDto'
        bankDetails:
          $ref: '#/components/schemas/FSharpOptionOfBankDetailsDto'
        idType:
          $ref: '#/components/schemas/MerchantIDTypeDto'
        nidFront:
          $ref: '#/components/schemas/FSharpOptionOfString'
        nidBack:
          $ref: '#/components/schemas/FSharpOptionOfString'
        passport:
          $ref: '#/components/schemas/FSharpOptionOfString'
        birthCertificate:
          $ref: '#/components/schemas/FSharpOptionOfString'
    BusinessDetailsDto:
      type: object
      required:
      - deliveryAreaId
      properties:
        ownersName:
          type: string
        email:
          type: string
        phone:
          type: string
        businessName:
          type: string
        address:
          type: string
        deliveryAreaId:
          type: integer
          format: int32
        businessUrl:
          type: string
    OrgPickupPointDto:
      type: object
      required:
      - deliveryAreaId
      properties:
        pickupPointName:
          type: string
        address:
          type: string
        deliveryAreaId:
          type: integer
          format: int32
        phone:
          type: string
    PaymentTypeDto:
      type: object
    BusinessTypeDto:
      type: object
    FSharpOptionOfString:
      type: object
    FSharpOptionOfBankDetailsDto:
      type: object
    FSharpOptionOfOrgVerificationStatusDto:
      type: object
    FSharpOptionOfBkashDetailsDto:
      type: object
    MerchantIDTypeDto:
      type: object
x-generator: NSwag v13.10.8.0 (NJsonSchema v10.3.11.0 (Newtonsoft.Json v13.0.0.0))