def normalize_payload(payload):
    cleaned = []
    for item in payload:
        cleaned.append(str(item).strip())
    return cleaned