Json parse error

Hi, Im very much a begginer when it comes to coding api calls.
Right now im doing a call from unity with c# and I get this error:
“{“message”:“JSON parse error: Unrecognized token ‘ApiCalls’: was expecting (JSON String, Number, Array, Object or token ‘null’, ‘true’ or ‘false’)”,“code”:3002}
UnityEngine.Debug:Log (object)”

Im trying to create a project and the only thing I have in my body atm is this test json string: “{“name”:“1000_DDDD”}”

From what I can read it seems like that should be the only thing is required besides from pathparameters(that seems to be working), apikey and Content-Type

My code looks like this atm:

    WWWForm form = new WWWForm();
    PostData intiName = new PostData();
    intiName.name = project;
    var data = JsonConvert.SerializeObject(intiName);
    Debug.Log(data);
    form.AddField(name, data);
    UnityWebRequest www = UnityWebRequest.Post("https://api.clockify.me/api/v1/workspaces/602e6a81158b7e35c8f9147d/projects", form);
    www.SetRequestHeader("X-Api-Key", apiKey);
    www.SetRequestHeader("Content-Type", "application/json");
    www.downloadHandler = new DownloadHandlerBuffer();


    yield return www.SendWebRequest();

    if (www.result == UnityWebRequest.Result.ConnectionError)
    {
        Debug.Log(www.downloadHandler.text);
        Debug.Log(www.error);
    }
    else
    {
        Debug.Log(www.downloadHandler.text);
        Debug.Log(www.result);
        

    }