Add a user to Transmit using SCIM protocol.
The user has been successfully created.
{- "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"
}
{- "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": {
- "expired": true,
- "temporary": true,
- "updated_at": 0
}
}
}
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
startIndex | number Default: 1 The 1-based index of the first query result |
count | number <= 10000 Default: 1000 Number of users to return in page |
sortBy | string Default: "created_at" The name of the field you wish to sort by |
sortOrder | string Default: "asc" The order of the sort |
filter | string Search expression based on the SCIM protocol. For syntax and searchable fields, see Search query syntax |
attributes | Array 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 |
excludedAttributes | Array of strings The names of the user's attributes to be removed from the default set of attributes to return |
{- "schemas": [
- "string"
], - "totalResults": 0,
- "Resources": [
- {
- "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": {
- "expired": true,
- "temporary": true,
- "updated_at": 0
}
}
}
], - "startIndex": 0,
- "itemsPerPage": 0
}
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
startIndex | number Default: 1 The 1-based index of the first query result |
count | number <= 10000 Default: 1000 Number of users to return in page |
sortBy | string Default: "created_at" The name of the field you wish to sort by |
sortOrder | string Default: "asc" The order of the sort |
filter | string Search expression based on the SCIM protocol. For syntax and searchable fields, see Search query syntax |
attributes | Array 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 |
excludedAttributes | Array of strings The names of the user's attributes to be removed from the default set of attributes to return |
schemas required | Array of strings Schemas should be always set to ["urn:ietf:params:scim:api:messages:2.0:SearchRequest"] |
{- "startIndex": 1,
- "count": 1000,
- "sortBy": "email",
- "sortOrder": "asc",
- "filter": "string",
- "attributes": [
- "string"
], - "excludedAttributes": [
- "string"
], - "schemas": [
- "urn:ietf:params:scim:api:messages:2.0:SearchRequest"
]
}
{- "schemas": [
- "string"
], - "totalResults": 0,
- "Resources": [
- {
- "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": {
- "expired": true,
- "temporary": true,
- "updated_at": 0
}
}
}
], - "startIndex": 0,
- "itemsPerPage": 0
}
Search for a SCIM user by user ID
{- "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": {
- "expired": true,
- "temporary": true,
- "updated_at": 0
}
}
}
Replace user attributes using SCIM protocol.
The user attributes have been successfully replaced.
{- "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"
}
{- "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": {
- "expired": true,
- "temporary": true,
- "updated_at": 0
}
}
}
Delete a user from Transmit using SCIM protocol.
The user has been successfully deleted.
{- "schemas": "string",
- "status": 404,
- "detail": "string"
}