Skip to main content
Delete Organization
DELETE
DELETE
https://api.atzcrm.com/v1/organization/:slug

Delete an existing organization by its unique slug.

Request

DELETE

DELETE /v1/organization/:slug

Path Parameter

  • slugstring

    Replace :slug with the organization's unique slug in the request URL.

Headers

  • Authorization: Bearer your_access_token

Response

200

Body

  • idnumber

    Example: 28

  • slugstring

    Example: organization_d1d6d8323f07a6615f95

  • namestring

    Example: Anjali kotwani

  • websitestring

    Example: google.com

  • locationstring

    Example: indore

  • Addressstring

    Example: pipariya

  • tagsstring

    Example: [leader,java]

  • industryobject

    Example:
    "id": 1,
    "name": "it",

  • descriptionstring

    Example: Experienced software engineer with a focus on frontend development.

  • profile_picturestring

    Example: img.jpg

  • ownerobject

    Example:
    "id": 17"

  • created_atstring (ISO 8601 date)

    Example: 2015-05-15T00:00:00Z

  • updated_atstring (ISO 8601 date)

    Example: 2015-05-15T00:00:00Z

  • created_byobject

    Example:
    "id": 1

  • updated_byobject

    Example:
    "id": 1

  • socialsobject

    Example:
    "linkedin": "anjalilinkedin.com",
    "xing": "anjali.com"

  • custom fields:object

    Example:
    "id": 1,
    "field_name": "textfeild",
    "field_type": "string",
    "value": "anjali"

401

Body

  • Unauthorized
404

Body

  • Organization does not exist

Response Example

{
"id": 6,
"slug": "organization_931819e6d2e065d355ab",
"name": "TEs contact ",
"website": "",
"location": "",
"address": "",
"tags": null,
"industry": null,
"description": "",
"profile_picture": "",
"owner": {
"id": 1
},
"created_at": "2024-05-24T20:06:58.000Z",
"updated_at": "2024-05-24T20:06:58.000Z",
"created_by": {
"id": 1
},
"updated_by": {
"id": 1
},
"socials": {
"linkedin": "",
"xing": ""
},
"custom_fields": [
{
"id": 1,
"field_name": "C Text asasa",
"field_type": "text",
"value": "Some custom value"
},
{
"id": 2,
"field_name": "C Date",
"field_type": "date",
"value": null
}
]
}