Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

URL

Description

HTTP Method

HTTP headers

HTTP Request payload

<CONFLUENCE_BASE_URL>/rest/confluenceuserexport/1.0/search

This is the endpoint that can be used for searching Confluence users.

POST

Content-type: application/json

Accept: application/json

Authorization: Basic (<username:password>base64)

EXAMPLE 1

The payload below get the 20 first users that are active or inactive starting from 0.

Code Block
languagejson
{
  "searchString": "",
  "activeUsers": true,
  "inActiveUsers": true,
  "offset": 0,
  "pageSize": 20
}
EXAMPLE 2

The payload below get the 50 first users that are active or inactive starting from 0 where the user email contains @mail.com.

Code Block
{
  "searchString": "@mail.com",
  "activeUsers": true,
  "inActiveUsers": true,
  "offset": 0,
  "pageSize": 50
}

<CONFLUENCE_BASE_URL>/rest/confluenceuserexport/1.0/file/json

POST

Content-type: application/json

Accept: application/json

Authorization: Basic (<username:password>base64)

<CONFLUENCE_BASE_URL>/rest/confluenceuserexport/1.0/file/xml

POST

Content-type: application/json

Accept: application/json

Authorization: Basic (<username:password>base64)

<CONFLUENCE_BASE_URL>/rest/confluenceuserexport/1.0/file/csv

POST

Content-type: application/json

Accept: application/json

Authorization: Basic (<username:password>base64)

<CONFLUENCE_BASE_URL>/rest/confluenceuserexport/1.0/file/xlsx

POST

Content-type: application/json

Accept: application/json

Authorization: Basic (<username:password>base64)

Servlets

URL

Description

HTTP Method

HTTP headers

HTTP Request payload

...