Skip to content

Users-SCIM

Manage user profiles using SCIM protocol

Languages
Servers
Sandbox environment
https://api.sbx.transmitsecurity.io/cis/
Production environment (US)
https://api.transmitsecurity.io/cis/
Production environment (EU)
https://api.eu.transmitsecurity.io/cis/
Production environment (CA)
https://api.ca.transmitsecurity.io/cis/
Production environment (AU)
https://api.au.transmitsecurity.io/cis/

Create user

Request

Add a user to Transmit using SCIM protocol.

Required permissions: apps:create, [appId]:create, users:create.

Security
ClientAccessToken
Headers
Acceptstringrequired

application/scim+json

Content-Typestringrequired

application/scim+json

Bodyapplication/jsonrequired
nameobject
preferredLanguagestring

The preferred language of the user

emailsArray of objects

The emails for the user

phoneNumbersArray of objects

The phone numbers for the user

photosArray of strings

The photos for the user, only 1 can be sent

addressesArray of objects

The addresses for the user, only 1 can be stored

schemasArray of stringsrequired

One or more schemas that are used in the API call. The core schema 'urn:ietf:params:scim:schemas:core:2.0:User' must be always specified.

Items Enum"urn:ietf:params:scim:schemas:core:2.0:User""urn:ietf:params:scim:schemas:extension:CustomAppData:2.0:User"
urn:ietf:params:scim:schemas:extension:CustomAppData:2.0:Userobject

Custom app data object for app-related user info

externalIdstring

A unique identifier in a tenant

activeboolean

A Boolean value indicating the user's administrative status

userNamestringrequired

Unique identifier for the user

passwordstring

The password for the user

hashed_passwordobject
curl -i -X POST \
  https://api.sbx.transmitsecurity.io/cis/scim/Users \
  -H 'Accept: string' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "name": {
      "honorificPrefix": "string",
      "givenName": "string",
      "familyName": "string",
      "middleName": "string"
    },
    "preferredLanguage": "string",
    "emails": [
      {
        "value": "string",
        "primary": false
      }
    ],
    "phoneNumbers": [
      {
        "value": "string",
        "primary": false
      }
    ],
    "photos": [
      "string"
    ],
    "addresses": [
      {
        "streetAddress": "string",
        "locality": "string",
        "region": "string",
        "postalCode": "string",
        "country": "string"
      }
    ],
    "schemas": [
      "urn:ietf:params:scim:schemas:core:2.0:User"
    ],
    "urn:ietf:params:scim:schemas:extension:CustomAppData:2.0:User": {},
    "externalId": "string",
    "active": true,
    "userName": "string",
    "password": "string",
    "hashed_password": {
      "password": "string",
      "salt": "string",
      "algorithm": "argon2"
    }
  }'

Responses

The user has been successfully created.

Bodyapplication/json
schemasArray of stringsrequired

List of included SCIM schemas that are used to indicate the attributes contained within a resource.

userNamestringrequired

Unique identifier of the user. In Transmit, the username can be used for password authentication unless a primary email is used instead.

nameobject
displayNamestring

The name of the user, suitable for display to end-users

preferredLanguagestring

Indicates the user's preferred written or spoken languages and is generally used for selecting a localized user interface

activeboolean

A Boolean value indicating the user's administrative status

emailsArray of strings

Email addresses for the user.

phoneNumbersArray of strings

Phone numbers for the user.

photosArray of strings

A URI that is a uniform resource locator (as defined in Section 1.1.3 of [RFC3986]) that points to a resource location representing the user's image.

addressesArray of strings

The user's addresses

idstringrequired

The ID of the user

externalIdstring

The external ID of the user

metaobjectrequired
meta.​resourceTypestring

Resource type

meta.​createdstring(date-time)

The date time that the resource was created

meta.​lastModifiedstring(date-time)

The date time that the resource was last modified

meta.​locationstring

The URI of the resource

urn:ietf:params:scim:schemas:extension:CustomAppData:2.0:Userobject

Custom app data object for app-related user info

urn:ietf:params:scim:schemas:extension:UserExtended:2.0:Userobjectrequired
urn:ietf:params:scim:schemas:extension:UserExtended:2.0:User.​statusstringrequired
Enum"Active""Disabled""Pending"
urn:ietf:params:scim:schemas:extension:UserExtended:2.0:User.​lastAuthstring(date-time)required

The last time the user authenticated

urn:ietf:params:scim:schemas:extension:UserExtended:2.0:User.​passwordInformationobjectrequired
urn:ietf:params:scim:schemas:extension:UserExtended:2.0:User.​passwordInformation.​expiredbooleanrequired

Whether the password is currently expired

urn:ietf:params:scim:schemas:extension:UserExtended:2.0:User.​passwordInformation.​temporarybooleanrequired

Whether the password must be reset after first use

urn:ietf:params:scim:schemas:extension:UserExtended:2.0:User.​passwordInformation.​updated_atnumberrequired

The date the password was last updated, as unix epoch in milliseconds

urn:ietf:params:scim:schemas:extension:UserExtended:2.0:User.​passwordInformation.​expires_instring(date-time)

The date the password will be expired

Response
application/json
{ "schemas": [ "string" ], "userName": "string", "name": { "honorificPrefix": "string", "givenName": "string", "familyName": "string", "middleName": "string" }, "displayName": "string", "preferredLanguage": "string", "active": true, "emails": [ "string" ], "phoneNumbers": [ "string" ], "photos": [ "string" ], "addresses": [ "string" ], "id": "string", "externalId": "string", "meta": { "resourceType": "string", "created": "2019-08-24T14:15:22Z", "lastModified": "2019-08-24T14:15:22Z", "location": "string" }, "urn:ietf:params:scim:schemas:extension:CustomAppData:2.0:User": {}, "urn:ietf:params:scim:schemas:extension:UserExtended:2.0:User": { "status": "Active", "lastAuth": "2019-08-24T14:15:22Z", "passwordInformation": { … } } }

Get scim users

Request

Search across your application’s users at Transmit. This endpoint also allows you to return all of your application’s users by sending no filters at all.

Required permissions: apps:read, [appId]:read, users:read, apps:list, [appId]:list, users:list.

Security
ClientAccessToken
Query
startIndexnumber

The 1-based index of the first query result

Default 1
countnumber<= 10000

Number of users to return in page

Default 1000
sortBystring

The name of the field you wish to sort by

Default "meta.created"
Enum"emails""phoneNumbers""meta.created""lastAuth"
sortOrderstring

The order of the sort

Default "asc"
Enum"asc""desc"
filterstring

Search expression based on the SCIM protocol. For syntax and searchable fields, see Search query syntax

attributesArray of strings

The names of the user's attributes to return in the response, overriding the set of attributes that would be returned by default

excludedAttributesArray of strings

The names of the user's attributes to be removed from the default set of attributes to return

Headers
Acceptstringrequired

application/scim+json

curl -i -X GET \
  'https://api.sbx.transmitsecurity.io/cis/scim/Users?startIndex=1&count=1000&sortBy=emails&sortOrder=asc&filter=string&attributes=string&excludedAttributes=string' \
  -H 'Accept: string' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

Bodyapplication/json
schemasArray of stringsrequired

Schema uri

totalResultsnumber

Number of total user results

ResourcesArray of objectsrequired

The returned users

Resources[].​schemasArray of stringsrequired

List of included SCIM schemas that are used to indicate the attributes contained within a resource.

Resources[].​userNamestringrequired

Unique identifier of the user. In Transmit, the username can be used for password authentication unless a primary email is used instead.

Resources[].​nameobject
Resources[].​displayNamestring

The name of the user, suitable for display to end-users

Resources[].​preferredLanguagestring

Indicates the user's preferred written or spoken languages and is generally used for selecting a localized user interface

Resources[].​activeboolean

A Boolean value indicating the user's administrative status

Resources[].​emailsArray of strings

Email addresses for the user.

Resources[].​phoneNumbersArray of strings

Phone numbers for the user.

Resources[].​photosArray of strings

A URI that is a uniform resource locator (as defined in Section 1.1.3 of [RFC3986]) that points to a resource location representing the user's image.

Resources[].​addressesArray of strings

The user's addresses

Resources[].​idstringrequired

The ID of the user

Resources[].​externalIdstring

The external ID of the user

Resources[].​metaobjectrequired
Resources[].​meta.​resourceTypestring

Resource type

Resources[].​meta.​createdstring(date-time)

The date time that the resource was created

Resources[].​meta.​lastModifiedstring(date-time)

The date time that the resource was last modified

Resources[].​meta.​locationstring

The URI of the resource

Resources[].​urn:ietf:params:scim:schemas:extension:CustomAppData:2.0:Userobject

Custom app data object for app-related user info

Resources[].​urn:ietf:params:scim:schemas:extension:UserExtended:2.0:Userobjectrequired
Resources[].​urn:ietf:params:scim:schemas:extension:UserExtended:2.0:User.​statusstringrequired
Enum"Active""Disabled""Pending"
Resources[].​urn:ietf:params:scim:schemas:extension:UserExtended:2.0:User.​lastAuthstring(date-time)required

The last time the user authenticated

Resources[].​urn:ietf:params:scim:schemas:extension:UserExtended:2.0:User.​passwordInformationobjectrequired
Resources[].​urn:ietf:params:scim:schemas:extension:UserExtended:2.0:User.​passwordInformation.​expiredbooleanrequired

Whether the password is currently expired

Resources[].​urn:ietf:params:scim:schemas:extension:UserExtended:2.0:User.​passwordInformation.​temporarybooleanrequired

Whether the password must be reset after first use

Resources[].​urn:ietf:params:scim:schemas:extension:UserExtended:2.0:User.​passwordInformation.​updated_atnumberrequired

The date the password was last updated, as unix epoch in milliseconds

Resources[].​urn:ietf:params:scim:schemas:extension:UserExtended:2.0:User.​passwordInformation.​expires_instring(date-time)

The date the password will be expired

startIndexnumber

The 1-based index of the first result in the current set of list results

itemsPerPagenumber

The number of resources returned in a list response page

Response
application/json
{ "schemas": [ "string" ], "totalResults": 0, "Resources": [ { … } ], "startIndex": 0, "itemsPerPage": 0 }

Get scim users

Request

Search across your application’s users at Transmit. This endpoint also allows you to return all of your application’s users by sending no filters at all.

Required permissions: apps:read, [appId]:read, users:read, apps:list, [appId]:list, users:list.

Security
ClientAccessToken
Headers
Acceptstringrequired

application/scim+json

Content-Typestringrequired

application/scim+json

Bodyapplication/jsonrequired
startIndexnumber

The 1-based index of the first query result

Default 1
countnumber<= 10000

Number of users to return in page

Default 1000
sortBystring

The name of the field you wish to sort by

Default "meta.created"
Enum"emails""phoneNumbers""meta.created""lastAuth"
sortOrderstring

The order of the sort

Default "asc"
Enum"asc""desc"
filterstring

Search expression based on the SCIM protocol. For syntax and searchable fields, see Search query syntax

attributesArray of strings

The names of the user's attributes to return in the response, overriding the set of attributes that would be returned by default

excludedAttributesArray of strings

The names of the user's attributes to be removed from the default set of attributes to return

schemasArray of stringsrequired

Schemas should be always set to ["urn:ietf:params:scim:api:messages:2.0:SearchRequest"]

Items Value"urn:ietf:params:scim:api:messages:2.0:SearchRequest"
curl -i -X POST \
  https://api.sbx.transmitsecurity.io/cis/scim/Users/.search \
  -H 'Accept: string' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "startIndex": 1,
    "count": 1000,
    "sortBy": "emails",
    "sortOrder": "asc",
    "filter": "string",
    "attributes": [
      "string"
    ],
    "excludedAttributes": [
      "string"
    ],
    "schemas": [
      "urn:ietf:params:scim:api:messages:2.0:SearchRequest"
    ]
  }'

Responses

Bodyapplication/json
schemasArray of stringsrequired

Schema uri

totalResultsnumber

Number of total user results

ResourcesArray of objectsrequired

The returned users

Resources[].​schemasArray of stringsrequired

List of included SCIM schemas that are used to indicate the attributes contained within a resource.

Resources[].​userNamestringrequired

Unique identifier of the user. In Transmit, the username can be used for password authentication unless a primary email is used instead.

Resources[].​nameobject
Resources[].​displayNamestring

The name of the user, suitable for display to end-users

Resources[].​preferredLanguagestring

Indicates the user's preferred written or spoken languages and is generally used for selecting a localized user interface

Resources[].​activeboolean

A Boolean value indicating the user's administrative status

Resources[].​emailsArray of strings

Email addresses for the user.

Resources[].​phoneNumbersArray of strings

Phone numbers for the user.

Resources[].​photosArray of strings

A URI that is a uniform resource locator (as defined in Section 1.1.3 of [RFC3986]) that points to a resource location representing the user's image.

Resources[].​addressesArray of strings

The user's addresses

Resources[].​idstringrequired

The ID of the user

Resources[].​externalIdstring

The external ID of the user

Resources[].​metaobjectrequired
Resources[].​meta.​resourceTypestring

Resource type

Resources[].​meta.​createdstring(date-time)

The date time that the resource was created

Resources[].​meta.​lastModifiedstring(date-time)

The date time that the resource was last modified

Resources[].​meta.​locationstring

The URI of the resource

Resources[].​urn:ietf:params:scim:schemas:extension:CustomAppData:2.0:Userobject

Custom app data object for app-related user info

Resources[].​urn:ietf:params:scim:schemas:extension:UserExtended:2.0:Userobjectrequired
Resources[].​urn:ietf:params:scim:schemas:extension:UserExtended:2.0:User.​statusstringrequired
Enum"Active""Disabled""Pending"
Resources[].​urn:ietf:params:scim:schemas:extension:UserExtended:2.0:User.​lastAuthstring(date-time)required

The last time the user authenticated

Resources[].​urn:ietf:params:scim:schemas:extension:UserExtended:2.0:User.​passwordInformationobjectrequired
Resources[].​urn:ietf:params:scim:schemas:extension:UserExtended:2.0:User.​passwordInformation.​expiredbooleanrequired

Whether the password is currently expired

Resources[].​urn:ietf:params:scim:schemas:extension:UserExtended:2.0:User.​passwordInformation.​temporarybooleanrequired

Whether the password must be reset after first use

Resources[].​urn:ietf:params:scim:schemas:extension:UserExtended:2.0:User.​passwordInformation.​updated_atnumberrequired

The date the password was last updated, as unix epoch in milliseconds

Resources[].​urn:ietf:params:scim:schemas:extension:UserExtended:2.0:User.​passwordInformation.​expires_instring(date-time)

The date the password will be expired

startIndexnumber

The 1-based index of the first result in the current set of list results

itemsPerPagenumber

The number of resources returned in a list response page

Response
application/json
{ "schemas": [ "string" ], "totalResults": 0, "Resources": [ { … } ], "startIndex": 0, "itemsPerPage": 0 }

Get SCIM user by ID

Request

Search for a SCIM user by user ID.

Required permissions: apps:read, [appId]:read, users:read.

Security
ClientAccessToken
Path
user_idstringrequired

The user ID to search for

Headers
Acceptstringrequired

application/scim+json

curl -i -X GET \
  'https://api.sbx.transmitsecurity.io/cis/scim/Users/{user_id}' \
  -H 'Accept: string' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

Bodyapplication/json
schemasArray of stringsrequired

List of included SCIM schemas that are used to indicate the attributes contained within a resource.

userNamestringrequired

Unique identifier of the user. In Transmit, the username can be used for password authentication unless a primary email is used instead.

nameobject
displayNamestring

The name of the user, suitable for display to end-users

preferredLanguagestring

Indicates the user's preferred written or spoken languages and is generally used for selecting a localized user interface

activeboolean

A Boolean value indicating the user's administrative status

emailsArray of strings

Email addresses for the user.

phoneNumbersArray of strings

Phone numbers for the user.

photosArray of strings

A URI that is a uniform resource locator (as defined in Section 1.1.3 of [RFC3986]) that points to a resource location representing the user's image.

addressesArray of strings

The user's addresses

idstringrequired

The ID of the user

externalIdstring

The external ID of the user

metaobjectrequired
meta.​resourceTypestring

Resource type

meta.​createdstring(date-time)

The date time that the resource was created

meta.​lastModifiedstring(date-time)

The date time that the resource was last modified

meta.​locationstring

The URI of the resource

urn:ietf:params:scim:schemas:extension:CustomAppData:2.0:Userobject

Custom app data object for app-related user info

urn:ietf:params:scim:schemas:extension:UserExtended:2.0:Userobjectrequired
urn:ietf:params:scim:schemas:extension:UserExtended:2.0:User.​statusstringrequired
Enum"Active""Disabled""Pending"
urn:ietf:params:scim:schemas:extension:UserExtended:2.0:User.​lastAuthstring(date-time)required

The last time the user authenticated

urn:ietf:params:scim:schemas:extension:UserExtended:2.0:User.​passwordInformationobjectrequired
urn:ietf:params:scim:schemas:extension:UserExtended:2.0:User.​passwordInformation.​expiredbooleanrequired

Whether the password is currently expired

urn:ietf:params:scim:schemas:extension:UserExtended:2.0:User.​passwordInformation.​temporarybooleanrequired

Whether the password must be reset after first use

urn:ietf:params:scim:schemas:extension:UserExtended:2.0:User.​passwordInformation.​updated_atnumberrequired

The date the password was last updated, as unix epoch in milliseconds

urn:ietf:params:scim:schemas:extension:UserExtended:2.0:User.​passwordInformation.​expires_instring(date-time)

The date the password will be expired

Response
application/json
{ "schemas": [ "string" ], "userName": "string", "name": { "honorificPrefix": "string", "givenName": "string", "familyName": "string", "middleName": "string" }, "displayName": "string", "preferredLanguage": "string", "active": true, "emails": [ "string" ], "phoneNumbers": [ "string" ], "photos": [ "string" ], "addresses": [ "string" ], "id": "string", "externalId": "string", "meta": { "resourceType": "string", "created": "2019-08-24T14:15:22Z", "lastModified": "2019-08-24T14:15:22Z", "location": "string" }, "urn:ietf:params:scim:schemas:extension:CustomAppData:2.0:User": {}, "urn:ietf:params:scim:schemas:extension:UserExtended:2.0:User": { "status": "Active", "lastAuth": "2019-08-24T14:15:22Z", "passwordInformation": { … } } }

Replace user attributes

Request

Replace user attributes using SCIM protocol.

Required permissions: apps:edit, [appId]:edit, users:edit.

Security
ClientAccessToken
Path
user_idstringrequired

ID of the user

Headers
Acceptstringrequired

application/scim+json

Content-Typestringrequired

application/scim+json

Bodyapplication/jsonrequired
nameobject
preferredLanguagestring

The preferred language of the user

emailsArray of objects

The emails for the user

phoneNumbersArray of objects

The phone numbers for the user

photosArray of strings

The photos for the user, only 1 can be sent

addressesArray of objects

The addresses for the user, only 1 can be stored

schemasArray of stringsrequired

One or more schemas that are used in the API call. The core schema 'urn:ietf:params:scim:schemas:core:2.0:User' must be always specified.

Items Enum"urn:ietf:params:scim:schemas:core:2.0:User""urn:ietf:params:scim:schemas:extension:CustomAppData:2.0:User"
urn:ietf:params:scim:schemas:extension:CustomAppData:2.0:Userobject

Custom app data object for app-related user info

externalIdstring

A unique identifier in a tenant

activeboolean

A Boolean value indicating the user's administrative status

userNamestring

Unique identifier for the user

passwordstring

The password for the user

hashed_passwordobject
curl -i -X PUT \
  'https://api.sbx.transmitsecurity.io/cis/scim/Users/{user_id}' \
  -H 'Accept: string' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "name": {
      "honorificPrefix": "string",
      "givenName": "string",
      "familyName": "string",
      "middleName": "string"
    },
    "preferredLanguage": "string",
    "emails": [
      {
        "value": "string",
        "primary": false
      }
    ],
    "phoneNumbers": [
      {
        "value": "string",
        "primary": false
      }
    ],
    "photos": [
      "string"
    ],
    "addresses": [
      {
        "streetAddress": "string",
        "locality": "string",
        "region": "string",
        "postalCode": "string",
        "country": "string"
      }
    ],
    "schemas": [
      "urn:ietf:params:scim:schemas:core:2.0:User"
    ],
    "urn:ietf:params:scim:schemas:extension:CustomAppData:2.0:User": {},
    "externalId": "string",
    "active": true,
    "userName": "string",
    "password": "string",
    "hashed_password": {
      "password": "string",
      "salt": "string",
      "algorithm": "argon2"
    }
  }'

Responses

The user attributes have been successfully replaced.

Bodyapplication/json
schemasArray of stringsrequired

List of included SCIM schemas that are used to indicate the attributes contained within a resource.

userNamestringrequired

Unique identifier of the user. In Transmit, the username can be used for password authentication unless a primary email is used instead.

nameobject
displayNamestring

The name of the user, suitable for display to end-users

preferredLanguagestring

Indicates the user's preferred written or spoken languages and is generally used for selecting a localized user interface

activeboolean

A Boolean value indicating the user's administrative status

emailsArray of strings

Email addresses for the user.

phoneNumbersArray of strings

Phone numbers for the user.

photosArray of strings

A URI that is a uniform resource locator (as defined in Section 1.1.3 of [RFC3986]) that points to a resource location representing the user's image.

addressesArray of strings

The user's addresses

idstringrequired

The ID of the user

externalIdstring

The external ID of the user

metaobjectrequired
meta.​resourceTypestring

Resource type

meta.​createdstring(date-time)

The date time that the resource was created

meta.​lastModifiedstring(date-time)

The date time that the resource was last modified

meta.​locationstring

The URI of the resource

urn:ietf:params:scim:schemas:extension:CustomAppData:2.0:Userobject

Custom app data object for app-related user info

urn:ietf:params:scim:schemas:extension:UserExtended:2.0:Userobjectrequired
urn:ietf:params:scim:schemas:extension:UserExtended:2.0:User.​statusstringrequired
Enum"Active""Disabled""Pending"
urn:ietf:params:scim:schemas:extension:UserExtended:2.0:User.​lastAuthstring(date-time)required

The last time the user authenticated

urn:ietf:params:scim:schemas:extension:UserExtended:2.0:User.​passwordInformationobjectrequired
urn:ietf:params:scim:schemas:extension:UserExtended:2.0:User.​passwordInformation.​expiredbooleanrequired

Whether the password is currently expired

urn:ietf:params:scim:schemas:extension:UserExtended:2.0:User.​passwordInformation.​temporarybooleanrequired

Whether the password must be reset after first use

urn:ietf:params:scim:schemas:extension:UserExtended:2.0:User.​passwordInformation.​updated_atnumberrequired

The date the password was last updated, as unix epoch in milliseconds

urn:ietf:params:scim:schemas:extension:UserExtended:2.0:User.​passwordInformation.​expires_instring(date-time)

The date the password will be expired

Response
application/json
{ "schemas": [ "string" ], "userName": "string", "name": { "honorificPrefix": "string", "givenName": "string", "familyName": "string", "middleName": "string" }, "displayName": "string", "preferredLanguage": "string", "active": true, "emails": [ "string" ], "phoneNumbers": [ "string" ], "photos": [ "string" ], "addresses": [ "string" ], "id": "string", "externalId": "string", "meta": { "resourceType": "string", "created": "2019-08-24T14:15:22Z", "lastModified": "2019-08-24T14:15:22Z", "location": "string" }, "urn:ietf:params:scim:schemas:extension:CustomAppData:2.0:User": {}, "urn:ietf:params:scim:schemas:extension:UserExtended:2.0:User": { "status": "Active", "lastAuth": "2019-08-24T14:15:22Z", "passwordInformation": { … } } }

Delete SCIM user by ID

Request

Delete a user from Transmit using SCIM protocol.

Required permissions: apps:delete, [appId]:delete, users:delete.

Security
ClientAccessToken
Path
user_idstringrequired

The user ID to delete

Headers
Acceptstringrequired

application/scim+json

curl -i -X DELETE \
  'https://api.sbx.transmitsecurity.io/cis/scim/Users/{user_id}' \
  -H 'Accept: string' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

The user has been successfully deleted.

Response
No content