Skip to main content
PUT
/
api2
/
v1
/
projects
/
{projectUid}
/
fileNamingSettings
Update file naming settings for project
curl --request PUT \
  --url https://cloud.memsource.com/web/api2/v1/projects/{projectUid}/fileNamingSettings \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "completedFilePattern": "<string>",
  "renameCompleted": true,
  "targetFolderPath": "<string>"
}
'
{
  "completedFilePattern": "<string>",
  "renameCompleted": true,
  "targetFolderPath": "<string>"
}

Authorizations

Authorization
string
header
required

Get a token from auth/login endpoint and then pass it in the Authorization HTTP header in every subsequent API call. For more information visit our help center.

Path Parameters

projectUid
string
required

UID of the project

Body

application/json

File naming settings to apply

completedFilePattern
string

Pattern used to rename completed files; max 255 characters

Maximum string length: 255
renameCompleted
boolean

When true, completed files are renamed according to completedFilePattern

targetFolderPath
string

Output folder path for completed files; max 255 characters

Maximum string length: 255

Response

OK

completedFilePattern
string

Pattern used to rename completed files; max 255 characters

Maximum string length: 255
renameCompleted
boolean

When true, completed files are renamed according to completedFilePattern

targetFolderPath
string

Output folder path for completed files; max 255 characters

Maximum string length: 255