Klikodoo Whatsapp API

This document describes the available endpoints for the Klikodoo v18 API based on the provided Postman collection.

Base URL

Authentication

Some endpoints require a Bearer token. Example:

Authorization: Bearer <your_token_here>

Endpoints

Authenticate (WA)

Method: GET URL: https://klikodoo.id/api/wa/authentication Auth: No Auth Body:

{
    "params": {
        "client_id": "nvnOp3ymumXbkeA6D76TlIjj9xhKeKhkDsi45q2H",
        "client_secret": "r8tot8fBp8EQIpkFSDfExc7yNaIRTwGopivhSL05"
    }
}

Protected

Method: GET URL: https://klikodoo.id/api/wa/protected Auth: Bearer Token Body:

{
    "params": {
        "client_secret": "r8tot8fBp8EQIpkFSDfExc7yNaIRTwGopivhSL05"
    }
}

Limit

Method: GET URL: https://klikodoo.id/api/wa/2.0/limit Auth: None Body:

{
    "params": {
        "client_secret": "r8tot8fBp8EQIpkFSDfExc7yNaIRTwGopivhSL05"
    }
}

Get QR

Method: GET URL: https://klikodoo.id/api/wa/2.0/qr Auth: None Body:

{
    "params": {
        "client_secret": "r8tot8fBp8EQIpkFSDfExc7yNaIRTwGopivhSL05"
    }
}

Check Number

Method: GET URL: https://klikodoo.id/api/wa/2.0/check Auth: None Body:

{
    "params": {
        "phone": "6285863963913"
    }
}

Login

Method: GET URL: https://klikodoo.id/api/wa/2.0/get Auth: None Body:

{
    "params": {
        "method": "login",
        "client_secret": "r8tot8fBp8EQIpkFSDfExc7yNaIRTwGopivhSL05"
    }
}

Status

Method: GET URL: https://klikodoo.id/api/wa/2.0/get Auth: Bearer Token Body:

{
    "params": {
        "method": "status",
        "client_secret": "YZjyjRldqPgSMPdxXcy9zTgAqVKLxsPY1ey18Mja"
    }
}

Check Account

Method: POST URL: https://klikodoo.id/api/wa/2.0/post Auth: Bearer Token Body:

{
    "params": {
        "method": "check",
        "client_secret": "r8tot8fBp8EQIpkFSDfExc7yNaIRTwGopivhSL05",
        "version": "v15",
        "whatsapp_number": "6285863963913",
        "whatsapp_webhook": "https://klikodoo.id/"
    }
}

Update Account

Method: POST URL: https://klikodoo.id/api/wa/2.0/post Auth: None Body:

{
    "params": {
        "method": "update",
        "client_secret": "r8tot8fBp8EQIpkFSDfExc7yNaIRTwGopivhSL05",
        "version": "v15",
        "whatsapp_number": "6285863963913",
        "whatsapp_webhook": "https://demo17c.alphasoft.co.id/"
    }
}

Send Message

Method: POST URL: https://klikodoo.id/api/wa/2.0/post Auth: None Body:

{
    "params": {
        "method": "sendMessage",
        "client_secret": "r8tot8fBp8EQIpkFSDfExc7yNaIRTwGopivhSL05",
        "version": "v15",
        "phone": "6281288776713",
        "body": "Test",
        "filename": "This is name file",
        "caption": "Caption on files"
    }
}

Send File

Method: POST URL: https://klikodoo.id/api/wa/2.0/post Auth: None Body:

{
    "params": {
        "method": "sendFile",
        "client_secret": "r8tot8fBp8EQIpkFSDfExc7yNaIRTwGopivhSL05",
        "version": "v15",
        "phone": "6281288776713",
        "body": "data:image/jpeg;base64,",
        "filename": "This is name file",
        "caption": "Caption on files"
    }
}