URL_ARGUMENT_REQUIRED

The format of the resource URI is /api/v1/<resources>/<id>, where <id> is treated as an argument to the requested resource's action.

Reason

  • The API service expects the argument to the requested resource's action but could not find it in the resource URI

Solution

  • Make sure, that the argument is specified and all other URI components are on their places

Example

{
    "status": 400,
    "errors": [
        {
            "code": "URL_ARGUMENT_REQUIRED",
            "message": "Missing argument for the resource action",
            "more_info": "https://developer.kayako.com/api/v1/reference/errors/URL_ARGUMENT_REQUIRED"
        }
    ]
}