Skip to main content

RelationshipUpsertResponse

data object[]required

Array of operation results

  • Array [
  • oneOf
    idintegerrequired

    ID of the successfully created or updated relationship

    Example: 123
    statusintegerrequired

    HTTP status code for this operation

    Possible values: [200, 201]

    Example: 200
  • ]
  • RelationshipUpsertResponse
    {
    "data": [
    {
    "id": 123,
    "status": 200
    },
    {
    "status": 400,
    "error": {
    "target": [
    "Organization not found"
    ]
    }
    }
    ]
    }