Filter and get list of app for the partner

Use this API to fetch all the list of apps for the account based on the query parameters.

Parameters

KeyDescriptionConstraintsRequired/Optional
PARTNER_TOKENJWT Token issues post Partner loginShould be a valid Partner JWT Token.
nameApp name to be searched (Contains Search will be executed)If passed with phone & operation will be executedOptional
phonePhone to be searched (Contains Search will be executed)Phone to be searched (Contains Search will be executed)
pageNoPage Number. Default is 1 if not passedgreater than zero
pageSizeNumber of records in a response. Default is 10 if not passed.greater than zero

Sample Request

curl --location --request GET '{{partner_portal_base_url}}/partner/app/list?name=<name_like>&phone=<phone_like>&pageNo=<page_Number>&pageSize=<elements_per_page>' \ 
--header 'token: {{PARTNER_TOKEN}}'

Sample Response

{
    [
        {
            "id": "<app_id>",
            "name": "<app_name>",
            "type": "<app_type>",
            "live": <true/false>,
            "phone": <phone_number_with_country_code>,
            "stopped": <true/false>,
            "storageRegion": "<BR, DE, CH, GB, BH, ZA, AE, US, CA, AU, ID, IN, JP, SG, KR>",
            "uiFormStage": <>,
            "pipelineStage": <>,
            "creationStage": <>,
            "whatsappVerificationStatus": <>,
            "version": <0,1,2>,
            "products": ["ANALYTICS", "CUSTOMER_SUPPORT"],
            "createdOn": <epoch_timestamp>,
            "modifiedOn": <epoch_timestamp>
        }
    ],
    "status": "success"
}

Status Codes

Status CodeResponseComment
Success
200{ [{ "id": "\<app_id>", "name" : "\<app_name>", "type" : "\<app_type>", "live": <true/false>, "phone" : <phone_number_with_country_code>, "stopped": <true/false>, "storageRegion" : "\<BR, DE, CH, GB, BH, ZA, AE, US, CA, AU, ID, IN, JP, SG, KR>", "uiFormStage" : <>, "pipelineStage" : <>, "creationStage" : <>, "whatsappVerificationStatus" : <>, "version": <0,1,2>, "products" : ["ANALYTICS", "CUSTOMER_SUPPORT"], "createdOn": <epoch_timestamp>, "modifiedOn": <epoch_timestamp> }], "status": "success" }
Error
400{ "status":"error", "message/data":"<Specific to API>" }Either the request parameter type or HTTP request type is incorrect
401{ "status":"error", "message":"Unauthorized Access" }If the token is incorrect or forbidden.
403{ "status":"error", "message":"Unauthorized Access" }When app does not belong to the Partner
429{ "status": "error", "message": "Too Many Requests" }When the rate limit is exceeded
Language
Click Try It! to start a request and see the response here!