EN
Español
English
Português
    Add Notes

    Petition Details

    • Base URL: {host}/ASMSAPI/
    • Uri: /api/v9/item/{id}/note
    • Type: POST
    • Required headings:

    • content-type: application/json
    • X-Authorization: Bearer {token}

    URL Description

    • {host}: It represents the domain of the environment in which the API is located.
    • ASMSAPI/: Fixed API prefix.
    • URI: Specific endpoint for the request.


    EXAMPLE URL:

    https://{host}/ASMSAPI/api/v9/item/{id}/note
    


    Parameters

    Name Data type Obligatory Description
    Id Text Yes Item ID
    Description Text Yes Contents of the note
    itemType Text Yes Case Type
    visible Boolean Yes Indicate whether the note is public or private

    Body of the petition

    {
        "description": "<p>Prueba postman</p>",
        "itemType": 4,
        "visible": true
    }
    

    Answer

    {
        "result": true
    }
    

    Response Parameters

    Name Data type Description
    result Boolean Indicates whether the operation was successful

    Error Messages

    Code HTTP status Error Message
    500 InternalServerError FailureAddNote